Browse Source

mark two constants as static.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@276826 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 21 years ago
parent
commit
81334a5db0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/optional/splash/SplashScreen.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/optional/splash/SplashScreen.java View File

@@ -38,8 +38,8 @@ class SplashScreen extends JWindow implements ActionListener, BuildListener {
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);


Loading…
Cancel
Save