File tree 2 files changed +4
-3
lines changed
src/main/java/net/imagej/ui/swing/updater
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -82,8 +82,7 @@ public class ImageJUpdater implements UpdaterUI {
82
82
83
83
@ Override
84
84
public void run () {
85
- // NB: Disable migrator until its remaining FIXMEs are done.
86
- //new LauncherMigrator(context).checkLaunchStatus();
85
+ new LauncherMigrator (context ).checkLaunchStatus ();
87
86
88
87
if (errorIfDebian ()) return ;
89
88
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ private void migrateShortcuts() {
181
181
* sufficient Java version, and if so, transitions it to the new core update site.
182
182
*/
183
183
private void migrateUpdateSite () {
184
- throw new UnsupportedOperationException ("migrateUpdateSite unimplemented" ); //FIXME
184
+ // throw new UnsupportedOperationException("migrateUpdateSite unimplemented"); //FIXME
185
185
}
186
186
187
187
/**
@@ -449,6 +449,8 @@ private static String probeJavaVersion(
449
449
List <String > output ;
450
450
int exitCode ;
451
451
try {
452
+ System .out .println ("Exe file: " + exeFile .getPath ());
453
+ System .out .println ("Class path: " + configDir .getPath ());
452
454
Process p = new ProcessBuilder (exeFile .getPath (),
453
455
"-Djava.class.path=" + configDir .getPath (), "--main-class" , "Props" )
454
456
.redirectErrorStream (true ).start ();
You can’t perform that action at this time.
0 commit comments