Skip to content

Commit f3d58be

Browse files
committed
[FIX] public constructor for intentions
Fixes #10
1 parent afd08f6 commit f3d58be

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/main/java/net/seesharpsoft/intellij/plugins/csv/intention/CsvShiftColumnLeftIntentionAction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
public class CsvShiftColumnLeftIntentionAction extends CsvShiftColumnIntentionAction {
1515

16-
protected CsvShiftColumnLeftIntentionAction() {
16+
public CsvShiftColumnLeftIntentionAction() {
1717
super("Shift Column Left");
1818
}
1919

src/main/java/net/seesharpsoft/intellij/plugins/csv/intention/CsvShiftColumnRightIntentionAction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
public class CsvShiftColumnRightIntentionAction extends CsvShiftColumnIntentionAction {
1515

16-
protected CsvShiftColumnRightIntentionAction() {
16+
public CsvShiftColumnRightIntentionAction() {
1717
super("Shift Column Right");
1818
}
1919

src/main/resources/META-INF/plugin.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>net.seesharpsoft.intellij.plugins.csv</id>
33
<name>CSV Plugin</name>
4-
<version>1.5.0</version>
4+
<version>1.5.1</version>
55
<vendor url="https://github.com/SeeSharpSoft/intellij-csv-validator">
66
Martin Sommer
77
</vendor>
@@ -30,6 +30,7 @@
3030

3131
<change-notes><![CDATA[
3232
NEW: intentions to shift a whole column left/right<br>
33+
(includes bugfix for breaking intention functionality on previous IDE versions)
3334
]]>
3435
</change-notes>
3536

0 commit comments

Comments
 (0)