donaldp 01/12/02 07:18:31
Modified: src/test/org/apache/avalon/excalibur/collections/test
BinaryHeapTestCase.java
Log:
protected -> private
Revision Changes Path
1.3 +7 -7
jakarta-avalon-excalibur/src/test/org/apache/avalon/excalibur/collections/test/BinaryHeapTestCase.java
Index: BinaryHeapTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/src/test/org/apache/avalon/excalibur/collections/test/BinaryHeapTestCase.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- BinaryHeapTestCase.java 2001/11/19 12:09:39 1.2
+++ BinaryHeapTestCase.java 2001/12/02 15:18:31 1.3
@@ -17,13 +17,13 @@
public final class BinaryHeapTestCase
extends TestCase
{
- protected final static Integer VAL1 = new Integer( 1 );
- protected final static Integer VAL2 = new Integer( 2 );
- protected final static Integer VAL3 = new Integer( 3 );
- protected final static Integer VAL4 = new Integer( 4 );
- protected final static Integer VAL5 = new Integer( 5 );
- protected final static Integer VAL6 = new Integer( 6 );
- protected final static Integer VAL7 = new Integer( 7 );
+ private final static Integer VAL1 = new Integer( 1 );
+ private final static Integer VAL2 = new Integer( 2 );
+ private final static Integer VAL3 = new Integer( 3 );
+ private final static Integer VAL4 = new Integer( 4 );
+ private final static Integer VAL5 = new Integer( 5 );
+ private final static Integer VAL6 = new Integer( 6 );
+ private final static Integer VAL7 = new Integer( 7 );
public BinaryHeapTestCase()
{
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>