Skip to content

Commit

Permalink
. r move constant
Browse files Browse the repository at this point in the history
Co-Authored-By: Llewellyn Falco <[email protected]>
Co-Authored-By: ssilverx <[email protected]>
Co-Authored-By: ollin <[email protected]>
  • Loading branch information
4 people committed Oct 16, 2023
1 parent 89b9955 commit 6da991e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public static class Mac
TEXT_AND_IMAGE);
public static DiffInfo TK_DIFF = new DiffInfo("/Applications/TkDiff.app/Contents/MacOS/tkdiff",
TEXT);
public static DiffInfo INTELLIJ = IntelliJToolboxResolver.findIt();
public static DiffInfo VISUAL_STUDIO_CODE = new DiffInfo(
"/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code", "-d %s %s", TEXT);
}
Expand Down Expand Up @@ -66,6 +65,7 @@ public static class All
"diff %s %s", TEXT);
public static DiffInfo INTELLIJ_U = new DiffInfo(new IntelliJPathResolver(Ultimate).findIt(),
"diff %s %s", TEXT);
public static DiffInfo INTELLIJ = IntelliJToolboxResolver.findIt();
}
public static class Linux
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ private static class IntelliJMacReporter extends GenericDiffReporter
public static final IntelliJMacReporter INSTANCE = new IntelliJMacReporter();
public IntelliJMacReporter()
{
super(DiffPrograms.Mac.INTELLIJ);
super(DiffPrograms.All.INTELLIJ);
}
}
}

0 comments on commit 6da991e

Please sign in to comment.