summaryrefslogtreecommitdiff
path: root/java/ImageProcessing/framework/ImageApp.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/ImageProcessing/framework/ImageApp.java')
-rw-r--r--java/ImageProcessing/framework/ImageApp.java9
1 files changed, 1 insertions, 8 deletions
diff --git a/java/ImageProcessing/framework/ImageApp.java b/java/ImageProcessing/framework/ImageApp.java
index aa50fd3105f..5cfe8835b42 100644
--- a/java/ImageProcessing/framework/ImageApp.java
+++ b/java/ImageProcessing/framework/ImageApp.java
@@ -157,7 +157,7 @@ public class ImageApp extends Applet
Choice choice = new Choice ();
// Add the default choice first
- choice.addItem ("None");
+ choice.addItem ("Filters:");
// Now do the file processing -- to determine which filters need
// to be loaded.
@@ -170,11 +170,6 @@ public class ImageApp extends Applet
if (this.configFile_ == null)
this.configFile_ = "http://www.cs.wustl.edu/~pjain/java/ACE_wrappers/java/ImageProcessing/framework/filter.conf";
- if (this.filterContext_ == null)
- this.filterContext_ = getParameter ("filterContext");
- if (this.filterContext_ == null)
- this.filterContext_ = "http://www.cs.wustl.edu/~pjain/java/ACE_wrappers/java/ImageProcessing/";
-
URL url;
String configInfo= null;
try
@@ -223,7 +218,6 @@ public class ImageApp extends Applet
fullFilterName = tokens.nextToken ();
filterName = this.extractFilterName (fullFilterName);
- // URL filter = new URL (this.filterContext_ + fullFilterName + ".class");
System.out.println ("Loading: " + fullFilterName);
// Load the filter class
Class c = Class.forName (fullFilterName);
@@ -270,7 +264,6 @@ public class ImageApp extends Applet
private Panel centerPanel_ = new Panel ();
private String configFile_ = null;
- private String filterContext_ = null;
private Choice choice_ = null;
private ImageCanvas imageCanvas_ = new ImageCanvas ();
private FilePanel filePanel_;