Skip to content

Commit d66ec92

Browse files
authored
[CQ] fix nullability problems for flutter/propertyEditor (#8305)
Fix nullability problems in `src/io/flutter/propertyEditor/`. See #8291. If we pursue #8292, we could mark `src/io/flutter/propertyEditor/` as null-"clean". --- - [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 d742999 commit d66ec92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flutter-idea/src/io/flutter/propertyeditor/PropertyEditorViewFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void stateChanged(@NotNull ToolWindowManager toolWindowManager, @NotNull
9696
Disposer.register(toolWindow.getDisposable(), connection);
9797
}
9898

99-
private void checkDockedUnpinnedAndCreateContent(@NotNull Project project, ToolWindow toolWindow, boolean forceLoad) {
99+
private void checkDockedUnpinnedAndCreateContent(@NotNull Project project, @NotNull ToolWindow toolWindow, boolean forceLoad) {
100100
final Boolean isDockedUnpinned = toolWindow.getType().equals(ToolWindowType.DOCKED) && toolWindow.isAutoHide();
101101

102102
// If this is the first time we are loading the content, force a load even if docked unpinned state matches.

0 commit comments

Comments
 (0)