mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
[framework] DemoFramework: superfluous @Nullable
This commit is contained in:
parent
29ff4cd931
commit
8c23021496
@ -12,7 +12,6 @@ import com.intellij.openapi.roots.ModifiableModelsProvider;
|
|||||||
import com.intellij.openapi.roots.ModifiableRootModel;
|
import com.intellij.openapi.roots.ModifiableRootModel;
|
||||||
import icons.SdkIcons;
|
import icons.SdkIcons;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
|
||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
|
|
||||||
@ -38,7 +37,7 @@ public class DemoFramework extends FrameworkTypeEx {
|
|||||||
@Override
|
@Override
|
||||||
public FrameworkSupportInModuleConfigurable createConfigurable(@NotNull FrameworkSupportModel model) {
|
public FrameworkSupportInModuleConfigurable createConfigurable(@NotNull FrameworkSupportModel model) {
|
||||||
return new FrameworkSupportInModuleConfigurable() {
|
return new FrameworkSupportInModuleConfigurable() {
|
||||||
@Nullable
|
|
||||||
@Override
|
@Override
|
||||||
public JComponent createComponent() {
|
public JComponent createComponent() {
|
||||||
return new JCheckBox("SDK Extra Option");
|
return new JCheckBox("SDK Extra Option");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user