summaryrefslogtreecommitdiff
path: root/scripting/workben/installer/IdeUpdater.java
diff options
context:
space:
mode:
authorneilm <neilm@openoffice.org>2003-01-31 12:45:10 +0000
committerneilm <neilm@openoffice.org>2003-01-31 12:45:10 +0000
commit7854d9c33fd84b9af2fe7fe8c826feba068755ec (patch)
tree4a0a02be43b96e3beed928d8a53f64ca76f5c18c /scripting/workben/installer/IdeUpdater.java
parent4e16bd6a8a7bdaa3373f62f0c18da2d17c232fce (diff)
Removed support for Jedit - and only supports StarOffice6.1
Diffstat (limited to 'scripting/workben/installer/IdeUpdater.java')
-rw-r--r--scripting/workben/installer/IdeUpdater.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripting/workben/installer/IdeUpdater.java b/scripting/workben/installer/IdeUpdater.java
index 7d4bfc02a9f9..dd7dbb0991a8 100644
--- a/scripting/workben/installer/IdeUpdater.java
+++ b/scripting/workben/installer/IdeUpdater.java
@@ -40,17 +40,19 @@ public class IdeUpdater extends Thread {
if (installPath.endsWith(File.separator) == false)
installPath += File.separator;
- File jeditLauncher = new File( installPath + "jedit.jar" );
+ //File jeditLauncher = new File( installPath + "jedit.jar" );
File netbeansLauncher = new File( installPath + "bin" );
if( netbeansLauncher.isDirectory() ) {
isNetbeansPath = true;
installPath = installPath +"modules" + File.separator;
}
+ /*
else if( jeditLauncher.isFile() ){
isNetbeansPath = false;
installPath = installPath + "jars" + File.separator;
}
+ */
System.out.println( "IdeUpdater installPath is " + installPath + " isNetbeansPath is " + isNetbeansPath );
this.installPath = installPath;