Skip to content

Commit

Permalink
Fixes #216 bad copypaste conflicting with HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
krasa committed Apr 4, 2019
1 parent e5cb1cf commit 3b0d976
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
2 changes: 1 addition & 1 deletion META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<idea-plugin version="2">
<name>PlantUML integration</name>
<version>2.13.3</version>
<version>2.13.4</version>
<vendor url="https://github.com/esteinberg/plantuml4idea/">Eugene Steinberg</vendor>
<!-- IJ 12+ -->
<idea-version since-build="182"/>
Expand Down
11 changes: 0 additions & 11 deletions src/org/plantuml/idea/plantuml/CreatePlantUMLFileAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.intellij.ide.actions.CreateFileFromTemplateAction;
import com.intellij.ide.actions.CreateFileFromTemplateDialog;
import com.intellij.ide.actions.CreateHtmlFileAction;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiDirectory;
Expand Down Expand Up @@ -42,14 +41,4 @@ protected void buildDialog(Project project, PsiDirectory directory, CreateFileFr
protected String getActionName(PsiDirectory directory, @NotNull String newName, String templateName) {
return "PlantUML File";
}

@Override
public int hashCode() {
return 0;
}

@Override
public boolean equals(Object obj) {
return obj instanceof CreateHtmlFileAction;
}
}

0 comments on commit 3b0d976

Please sign in to comment.