Skip to content

Commit 6da991e

Browse files
LarsEckartisidoressilverxollin
committed
. r move constant
Co-Authored-By: Llewellyn Falco <[email protected]> Co-Authored-By: ssilverx <[email protected]> Co-Authored-By: ollin <[email protected]>
1 parent 89b9955 commit 6da991e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

approvaltests/src/main/java/org/approvaltests/reporters/DiffPrograms.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public static class Mac
3030
TEXT_AND_IMAGE);
3131
public static DiffInfo TK_DIFF = new DiffInfo("/Applications/TkDiff.app/Contents/MacOS/tkdiff",
3232
TEXT);
33-
public static DiffInfo INTELLIJ = IntelliJToolboxResolver.findIt();
3433
public static DiffInfo VISUAL_STUDIO_CODE = new DiffInfo(
3534
"/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code", "-d %s %s", TEXT);
3635
}
@@ -66,6 +65,7 @@ public static class All
6665
"diff %s %s", TEXT);
6766
public static DiffInfo INTELLIJ_U = new DiffInfo(new IntelliJPathResolver(Ultimate).findIt(),
6867
"diff %s %s", TEXT);
68+
public static DiffInfo INTELLIJ = IntelliJToolboxResolver.findIt();
6969
}
7070
public static class Linux
7171
{

approvaltests/src/main/java/org/approvaltests/reporters/intellij/IntelliJReporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ private static class IntelliJMacReporter extends GenericDiffReporter
1717
public static final IntelliJMacReporter INSTANCE = new IntelliJMacReporter();
1818
public IntelliJMacReporter()
1919
{
20-
super(DiffPrograms.Mac.INTELLIJ);
20+
super(DiffPrograms.All.INTELLIJ);
2121
}
2222
}
2323
}

0 commit comments

Comments
 (0)