From 2ddcd97730df56c68687bbb5372f39fe6ae1420f Mon Sep 17 00:00:00 2001 From: Stephane Bailliez Date: Tue, 8 Jan 2002 16:36:54 +0000 Subject: [PATCH] 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 --- src/main/org/apache/tools/ant/types/EnumeratedAttribute.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/types/EnumeratedAttribute.java b/src/main/org/apache/tools/ant/types/EnumeratedAttribute.java index dc07375b9..56ab5afb9 100644 --- a/src/main/org/apache/tools/ant/types/EnumeratedAttribute.java +++ b/src/main/org/apache/tools/ant/types/EnumeratedAttribute.java @@ -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.