Browse Source

Fallback to protected attributes to prevent breakage.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270628 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 24 years ago
parent
commit
2ddcd97730
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/types/EnumeratedAttribute.java

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

@@ -70,12 +70,12 @@ public abstract class EnumeratedAttribute {
/**
* The selected value in this enumeration.
*/
private String value;
protected String value;

/**
* the index of the selected value in the array.
*/
private int index;
protected int index;

/**
* This is the only method a subclass needs to implement.


Loading…
Cancel
Save