Browse Source

Remove redudent assignments

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273166 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
74f104a7d1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/types/DataType.java

+ 2
- 2
src/main/org/apache/tools/ant/types/DataType.java View File

@@ -76,11 +76,11 @@ public abstract class DataType extends ProjectComponent {
/**
* The descriptin the user has set.
*/
protected String description = null;
protected String description;
/**
* Value to the refid attribute.
*/
protected Reference ref = null;
protected Reference ref;
/**
* Are we sure we don't hold circular references?
*


Loading…
Cancel
Save