You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemind.apache.org by hl...@apache.org on 2005/02/12 15:27:22 UTC

cvs commit: jakarta-hivemind/framework/src/java/org/apache/hivemind/ant ManifestClassPath.java

hlship      2005/02/12 06:27:22

  Modified:    .        status.xml
               framework/src/java/org/apache/hivemind/ant
                        ManifestClassPath.java
  Log:
  HIVEMIND-92: ManifestClassPath accessing deprecated variable
  
  Revision  Changes    Path
  1.99      +3 -0      jakarta-hivemind/status.xml
  
  Index: status.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-hivemind/status.xml,v
  retrieving revision 1.98
  retrieving revision 1.99
  diff -u -r1.98 -r1.99
  --- status.xml	11 Feb 2005 18:15:21 -0000	1.98
  +++ status.xml	12 Feb 2005 14:27:22 -0000	1.99
  @@ -35,6 +35,9 @@
         <action type="update" dev="HLS"> Add package attribute to &lt;module&gt; and automatically qualify Java class and interface names into that package. </action>
         <action type="update" dev="HLS"> Allow the locale to be changed. </action>
         <action type="update" dev="HLS"> Add class: object provider (for resolving classes). </action>
  +      <action type="update" dev="HLS" fixes-bug="HIVEMIND-92" due-to="Brian K. Wallace">
  +        ManifestClassPath accessing deprecated variable
  +      </action>
       </release>
       <release version="1.1-alpha-1" date="Jan 19 2005">
         <action type="add" dev="KW"> Added &lt;dependency&gt; construct providing support for dependencies between modules. Refactoring of RegistryBuilder: Now constructs Registry using a ModuleProvider. </action>
  
  
  
  1.4       +2 -2      jakarta-hivemind/framework/src/java/org/apache/hivemind/ant/ManifestClassPath.java
  
  Index: ManifestClassPath.java
  ===================================================================
  RCS file: /home/cvs/jakarta-hivemind/framework/src/java/org/apache/hivemind/ant/ManifestClassPath.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ManifestClassPath.java	6 Jan 2005 01:45:11 -0000	1.3
  +++ ManifestClassPath.java	12 Feb 2005 14:27:22 -0000	1.4
  @@ -40,7 +40,7 @@
   
       public Path createClasspath()
       {
  -        _classpath = new Path(project);
  +        _classpath = new Path(getProject());
   
           return _classpath;
       }
  @@ -116,7 +116,7 @@
               }
           }
   
  -        project.setProperty(_property, buffer.toString());
  +        getProject().setProperty(_property, buffer.toString());
       }
   
       public File getDirectory()
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: hivemind-cvs-unsubscribe@jakarta.apache.org
For additional commands, e-mail: hivemind-cvs-help@jakarta.apache.org