summaryrefslogtreecommitdiff
path: root/scripting/workben
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2012-09-26 01:40:41 -0300
committerNoel Power <noel.power@suse.com>2012-09-26 09:45:00 +0100
commit6595e392eb314b79dec922daf9704569d0c8fff4 (patch)
treefe2f4a1fd04ca3f21c3471ae4d6b5220413d468f /scripting/workben
parent30dba8159557fcebbc7165752697783c2379c824 (diff)
fdo#51304: Remove the author of some java source files
This patch remove some '@author' for Java souce files, and removes some commented code founded when removing the '@author'. Change-Id: I7bff1507212e967069f3d18e6c1040f69501694a Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
Diffstat (limited to 'scripting/workben')
-rw-r--r--scripting/workben/installer/IdeUpdater.java17
-rw-r--r--scripting/workben/installer/XmlUpdater.java5
2 files changed, 0 insertions, 22 deletions
diff --git a/scripting/workben/installer/IdeUpdater.java b/scripting/workben/installer/IdeUpdater.java
index 721a265d644c..604decb63537 100644
--- a/scripting/workben/installer/IdeUpdater.java
+++ b/scripting/workben/installer/IdeUpdater.java
@@ -20,7 +20,6 @@ package installer;
import java.io.*;
import java.util.*;
-//import javax.xml.parsers.*;
import javax.swing.*;
/**
@@ -28,8 +27,6 @@ import javax.swing.*;
* file out of a jar file and parses it, providing access to this
* information in a <code>Vector</code> of <code>ConverterInfo</code>
* objects.
- *
- * @author Aidan Butler
*/
public class IdeUpdater extends Thread {
@@ -52,19 +49,12 @@ public class IdeUpdater extends Thread {
if (installPath.endsWith(File.separator) == false)
installPath += File.separator;
- //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;
@@ -124,10 +114,6 @@ public class IdeUpdater extends Thread {
public void run() {
- //InputStream istream;
- //URL url;
- //String fileName = null;
-
internalThread = Thread.currentThread();
progressBar.setString("Unzipping Required Files");
@@ -154,9 +140,6 @@ public class IdeUpdater extends Thread {
}
}
- //System.out.println("About to call register");
- //Register.register(installPath+File.separator, statusLabel, progressBar);
-
statusLabel.setText("Installation Complete");
progressBar.setString("Installation Complete");
progressBar.setValue(10);
diff --git a/scripting/workben/installer/XmlUpdater.java b/scripting/workben/installer/XmlUpdater.java
index 5161350975d5..fedd1d96ef33 100644
--- a/scripting/workben/installer/XmlUpdater.java
+++ b/scripting/workben/installer/XmlUpdater.java
@@ -23,11 +23,6 @@ import java.util.*;
import java.net.URL;
import javax.swing.*;
-/**
- *
- *
- * @author Aidan Butler
- */
public class XmlUpdater extends Thread {
private String classesPath = null;