summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2006-05-11 08:33:04 +0000
committerMark Wielaard <mark@klomp.org>2006-05-11 08:33:04 +0000
commitc2d36ec79839156a95c29ed5737b2668c0f82b11 (patch)
tree1f17982c3f230cbc56863cbdb9a89ffc5ffd9220 /tools
parent5ee7ec6118c2399bec758603587af62d8931d009 (diff)
downloadclasspath-c2d36ec79839156a95c29ed5737b2668c0f82b11.tar.gz
* tools/gnu/classpath/tools/appletviewer/Main.java (main): Cast
Option constructor null argument to String.
Diffstat (limited to 'tools')
-rw-r--r--tools/gnu/classpath/tools/appletviewer/Main.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gnu/classpath/tools/appletviewer/Main.java b/tools/gnu/classpath/tools/appletviewer/Main.java
index bcdc6741f..1d9fed2b0 100644
--- a/tools/gnu/classpath/tools/appletviewer/Main.java
+++ b/tools/gnu/classpath/tools/appletviewer/Main.java
@@ -199,7 +199,7 @@ class Main
OptionGroup debuggingGroup = new OptionGroup("Debugging option");
debuggingGroup.add(new Option("verbose", Main.messages.getString
("gcjwebplugin.verbose_description"),
- null)
+ (String) null)
{
public void parsed(String argument) throws OptionException
{
@@ -209,7 +209,7 @@ class Main
OptionGroup compatibilityGroup = new OptionGroup("Compatibility options");
compatibilityGroup.add(new Option("debug", Main.messages.getString
("gcjwebplugin.debug_description"),
- null)
+ (String) null)
{
public void parsed(String argument) throws OptionException
{