Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
coverage ignore - fix possible typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mahesh-hegde committed Jul 17, 2022
1 parent 36fee46 commit 6a61e92
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion jni/ffigen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ preamble: |
// ignore_for_file: constant_identifier_names
// ignore_for_file: unused_field
// ignore_for_file: unused_element
// coverage: ignore-file
// coverage:ignore-file
comments:
style: any
length: full
Expand Down
2 changes: 1 addition & 1 deletion jni/lib/src/direct_methods_generated.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Autogenerated; DO NOT EDIT
// Generated by running the script in tool/gen_aux_methods.dart
// coverage: ignore-file
// coverage:ignore-file
part of 'jni.dart';

extension JniInvokeMethods on Jni {
Expand Down
2 changes: 1 addition & 1 deletion jni/lib/src/jni_class_methods_generated.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Autogenerated; DO NOT EDIT
// Generated by running the script in tool/gen_aux_methods.dart
// coverage: ignore-file
// coverage:ignore-file
part of 'jni_class.dart';

extension JniClassCallMethods on JniClass {
Expand Down
2 changes: 1 addition & 1 deletion jni/lib/src/jni_object_methods_generated.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Autogenerated; DO NOT EDIT
// Generated by running the script in tool/gen_aux_methods.dart
// coverage: ignore-file
// coverage:ignore-file
part of 'jni_object.dart';

extension JniObjectCallMethods on JniObject {
Expand Down
2 changes: 1 addition & 1 deletion jni/lib/src/third_party/jni_bindings_generated.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// ignore_for_file: constant_identifier_names
// ignore_for_file: unused_field
// ignore_for_file: unused_element
// coverage: ignore-file
// coverage:ignore-file

// AUTO GENERATED FILE, DO NOT EDIT.
//
Expand Down
2 changes: 1 addition & 1 deletion jni/tool/gen_aux_methods.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void main(List<String> args) {
for (final s in [sInst, sStatic, sInvoke]) {
s.write("// Autogenerated; DO NOT EDIT\n"
"// Generated by running the script in tool/gen_aux_methods.dart\n");
s.write("// coverage: ignore-file\n");
s.write("// coverage:ignore-file\n");
}

sInst.write("part of 'jni_object.dart';\n\n");
Expand Down

0 comments on commit 6a61e92

Please sign in to comment.