Browse Source

reverting previous change

compiler is called weblogic in the documentation
the testcase seems to have been wrong


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276803 13f79535-47bb-0310-9956-ffa450edef68
master
Antoine Levy-Lambert 21 years ago
parent
commit
16904c3c17
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/etc/testcases/taskdefs/rmic/rmic.xml
  2. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/rmic/WLRmic.java

+ 1
- 1
src/etc/testcases/taskdefs/rmic/rmic.xml View File

@@ -89,7 +89,7 @@


<target name="testWlrmic" if="wlrmic.present" depends="init"> <target name="testWlrmic" if="wlrmic.present" depends="init">
<base-rmic <base-rmic
compiler="wlrmic"
compiler="weblogic"
/> />
</target> </target>




+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/rmic/WLRmic.java View File

@@ -33,7 +33,7 @@ public class WLRmic extends DefaultRmicAdapter {
/** /**
* the name of this adapter for users to select * the name of this adapter for users to select
*/ */
public static final String COMPILER_NAME = "wlrmic";
public static final String COMPILER_NAME = "weblogic";


public static final String ERROR_NO_WLRMIC_ON_CLASSPATH = "Cannot use WebLogic rmic, as it is not " public static final String ERROR_NO_WLRMIC_ON_CLASSPATH = "Cannot use WebLogic rmic, as it is not "
+ "available. A common solution is to " + "available. A common solution is to "


Loading…
Cancel
Save