You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by gs...@apache.org on 2007/06/23 21:06:03 UTC

svn commit: r550112 - /incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java

Author: gscokart
Date: Sat Jun 23 14:06:02 2007
New Revision: 550112

URL: http://svn.apache.org/viewvc?view=rev&rev=550112
Log:
remove confusing field.  The id is implicitely known by ant

Modified:
    incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java

Modified: incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java?view=diff&rev=550112&r1=550111&r2=550112
==============================================================================
--- incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java (original)
+++ incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyAntSettings.java Sat Jun 23 14:06:02 2007
@@ -95,8 +95,6 @@
 
     private String passwd = null;
 
-    private String id = null;
-
     /**
      * Returns the default ivy settings of this classloader. If it doesn't exist yet, a new one is
      * created using the given project to back the VariableContainer.
@@ -175,13 +173,6 @@
         userName = format(aUserName);
     }
 
-    public String getId() {
-        return id;
-    }
-
-    public void setId(String id) {
-        this.id = id;
-    }
 
     private static String format(String str) {
         return str == null ? str : (str.trim().length() == 0 ? null : str.trim());