Delete traces of "jet" in test data and unimportant code
This commit is contained in:
+1
-1
@@ -23,7 +23,7 @@ import org.jetbrains.annotations.Nullable;
|
||||
|
||||
public class JetRunConfigurationSettingsFormatConverterProvider extends ConverterProvider {
|
||||
protected JetRunConfigurationSettingsFormatConverterProvider() {
|
||||
super("jet-run-configuration-should-store-its-settings-as-java-app-configuration");
|
||||
super("kotlin-run-configuration-should-store-its-settings-as-java-run-configuration");
|
||||
}
|
||||
|
||||
@NotNull
|
||||
|
||||
+2
-2
@@ -67,7 +67,7 @@ public class AddOverrideToEqualsHashCodeToStringFix extends JetIntentionAction<P
|
||||
List<JetParameter> parameters = function.getValueParameters();
|
||||
if (parameters.size() != 1) return false;
|
||||
JetTypeReference parameterType = parameters.iterator().next().getTypeReference();
|
||||
return parameterType != null && ("Any?".equals(parameterType.getText()) || "jet.Any?".equals(parameterType.getText()));
|
||||
return parameterType != null && "Any?".equals(parameterType.getText());
|
||||
}
|
||||
|
||||
if ("hashCode".equals(name) || "toString".equals(name)) {
|
||||
@@ -99,7 +99,7 @@ public class AddOverrideToEqualsHashCodeToStringFix extends JetIntentionAction<P
|
||||
return new JetSingleIntentionActionFactory() {
|
||||
@Nullable
|
||||
@Override
|
||||
public AddOverrideToEqualsHashCodeToStringFix createAction(Diagnostic diagnostic) {
|
||||
public AddOverrideToEqualsHashCodeToStringFix createAction(@NotNull Diagnostic diagnostic) {
|
||||
return new AddOverrideToEqualsHashCodeToStringFix(diagnostic.getPsiElement());
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user