Skip to content

Commit 9c7c786

Browse files
Do not import top level library internally
1 parent 6c18b5b commit 9c7c786

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pkgs/jni/lib/src/errors.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
import 'dart:io';
66

7-
import '../_internal.dart';
7+
import 'package:meta/meta.dart' show internal;
8+
89
import 'third_party/generated_bindings.dart';
910

1011
// TODO(#567): Add the fact that [JException] is now a [JObject] to the

pkgs/jni/lib/src/jimplementer.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ import 'dart:isolate';
77

88
import 'package:meta/meta.dart' show internal;
99

10-
import '../jni.dart';
1110
import 'accessors.dart';
1211
import 'jni.dart';
12+
import 'jobject.dart';
1313
import 'third_party/generated_bindings.dart';
14+
import 'types.dart';
1415

1516
/// A builder that builds proxy objects that implement one or more interfaces.
1617
///

0 commit comments

Comments
 (0)