donaldp 01/12/29 19:46:59
Modified: proposal/myrmidon/src/main/org/apache/tools/ant/types
DataType.java EnumeratedAttribute.java
Reference.java
Log:
Clean some cruft
Revision Changes Path
1.6 +0 -26
jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/types/DataType.java
Index: DataType.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/types/DataType.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- DataType.java 23 Dec 2001 06:32:48 -0000 1.5
+++ DataType.java 30 Dec 2001 03:46:59 -0000 1.6
@@ -27,11 +27,6 @@
extends ProjectComponent
{
/**
- * The descriptin the user has set.
- */
- protected String description;
-
- /**
* Value to the refid attribute.
*/
protected Reference ref;
@@ -46,17 +41,6 @@
protected boolean checked = true;
/**
- * Sets a description of the current data type. It will be useful in
- * commenting what we are doing.
- *
- * @param desc The new Description value
- */
- public void setDescription( String desc )
- {
- description = desc;
- }
-
- /**
* Set the value of the refid attribute. <p>
*
* Subclasses may need to check whether any other attributes have been
set
@@ -70,16 +54,6 @@
{
this.ref = ref;
checked = false;
- }
-
- /**
- * Return the description for the current data type.
- *
- * @return The Description value
- */
- public String getDescription()
- {
- return description;
}
/**
1.4 +0 -1
jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/types/EnumeratedAttribute.java
Index: EnumeratedAttribute.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/types/EnumeratedAttribute.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- EnumeratedAttribute.java 23 Dec 2001 06:32:48 -0000 1.3
+++ EnumeratedAttribute.java 30 Dec 2001 03:46:59 -0000 1.4
@@ -19,7 +19,6 @@
*/
public abstract class EnumeratedAttribute
{
-
protected String value;
public EnumeratedAttribute()
1.4 +0 -12
jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/types/Reference.java
Index: Reference.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/types/Reference.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Reference.java 23 Dec 2001 06:32:48 -0000 1.3
+++ Reference.java 30 Dec 2001 03:46:59 -0000 1.4
@@ -17,19 +17,7 @@
*/
public class Reference
{
-
private String refid;
-
- public Reference()
- {
- super();
- }
-
- public Reference( String id )
- {
- this();
- setRefId( id );
- }
public void setRefId( String id )
{
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>