stevel      2004/09/07 01:55:38

  Modified:    src/main/org/apache/tools/ant/taskdefs/optional/splash
                        SplashScreen.java
  Log:
  mark two constants as static.
  
  Revision  Changes    Path
  1.12      +2 -2      
ant/src/main/org/apache/tools/ant/taskdefs/optional/splash/SplashScreen.java
  
  Index: SplashScreen.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/splash/SplashScreen.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- SplashScreen.java 9 Feb 2004 21:05:34 -0000       1.11
  +++ SplashScreen.java 7 Sep 2004 08:55:38 -0000       1.12
  @@ -38,8 +38,8 @@
       private JLabel text;
       private JProgressBar pb;
       private int total;
  -    private final int min = 0;
  -    private final int max = 200;
  +    private static final int min = 0;
  +    private static final int max = 200;
   
       public SplashScreen(String msg) {
           init(null);
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to