try to make mp3decoder compile
[IRC.git] / Robust / src / ClassLibrary / SSJava / Integer.java
index bfed63aa897403e244394e05e26958a468a89987..7c51d4ed5e604c94c23f75b2902d6dd1981a6373 100644 (file)
@@ -3,6 +3,12 @@
 public class Integer {
   
   @LOC("V")  private int value;
+  
+  /**
+   * The maximum value an <code>int</code> can represent is 2147483647 (or
+   * 2<sup>31</sup> - 1).
+   */
+  public static final int MAX_VALUE = 0x7fffffff;
 
   public Integer(int value) {
     this.value = value;