Skip to content

Commit 01200f2

Browse files
authored
[CQ] fix unchecked assignment (#8368)
Follow-up from #8367, a missed unchecked assignment. --- - [x] I’ve reviewed the contributor guide and applied the relevant portions to this PR. <details> <summary>Contribution guidelines:</summary><br> - See our [contributor guide]([https://github.com/dart-lang/sdk/blob/main/CONTRIBUTING.md](https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview) for general expectations for PRs. - Larger or significant changes should be discussed in an issue before creating a PR. - Dart contributions to our repos should follow the [Dart style guide](https://dart.dev/guides/language/effective-dart) and use `dart format`. - Java and Kotlin contributions should strive to follow Java and Kotlin best practices ([discussion](#8098)). </details>
1 parent 632e1cd commit 01200f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/io/flutter/test/DartTestEventsConverterZ.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public DartTestEventsConverterZ(@NotNull final String testFrameworkName,
101101
@NotNull final DartUrlResolver urlResolver) {
102102
super(testFrameworkName, consoleProperties);
103103
myUrlResolver = urlResolver;
104-
myTestIdToTimestamp = new HashMap();
104+
myTestIdToTimestamp = new HashMap<>();
105105
myTestData = new HashMap<>();
106106
myGroupData = new HashMap<>();
107107
mySuiteData = new HashMap<>();

0 commit comments

Comments
 (0)