[framework] DemoFramework: superfluous @Nullable

This commit is contained in:
Yann Cébron 2020-03-06 17:16:58 +01:00
parent 29ff4cd931
commit 8c23021496

View File

@ -12,7 +12,6 @@ import com.intellij.openapi.roots.ModifiableModelsProvider;
import com.intellij.openapi.roots.ModifiableRootModel;
import icons.SdkIcons;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.swing.*;
@ -38,7 +37,7 @@ public class DemoFramework extends FrameworkTypeEx {
@Override
public FrameworkSupportInModuleConfigurable createConfigurable(@NotNull FrameworkSupportModel model) {
return new FrameworkSupportInModuleConfigurable() {
@Nullable
@Override
public JComponent createComponent() {
return new JCheckBox("SDK Extra Option");