Skip to content

Commit 7ff27af

Browse files
committed
Fix the analysis issues
1 parent 5be0e62 commit 7ff27af

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

openapi-generator-annotations/test/openapi_generator_annotations_test.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'package:openapi_generator_annotations/openapi_generator_annotations.dart';
21
import 'package:test/test.dart';
32

43
void main() {

openapi-generator-cli/bin/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ void main(List<String> arguments) async {
1212

1313
var commands = [
1414
'-jar',
15-
"${"${binPath}"}",
15+
"${"$binPath"}",
1616
...arguments,
1717
];
1818
if (JAVA_OPTS.isNotEmpty) {

openapi-generator/lib/src/openapi_generator_runner.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class OpenapiGenerator extends GeneratorForAnnotation<annots.Openapi> {
7676

7777
var arguments = [
7878
'-jar',
79-
"${"${binPath}"}",
79+
"${"$binPath"}",
8080
...command.split(separator).toList(),
8181
];
8282
if (JAVA_OPTS.isNotEmpty) {

0 commit comments

Comments
 (0)