/[classpath]/classpath/java/util/IllegalFormatPrecisionException.java
ViewVC logotype

Diff of /classpath/java/util/IllegalFormatPrecisionException.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.1 by tromey, Wed Apr 20 20:20:31 2005 UTC revision 1.1.2.2 by tromey, Sun Aug 14 00:50:33 2005 UTC
# Line 41  package java.util; Line 41  package java.util;
41  /** @since 1.5 */  /** @since 1.5 */
42  public class IllegalFormatPrecisionException extends IllegalFormatException  public class IllegalFormatPrecisionException extends IllegalFormatException
43  {  {
44    private int precision;    private static final long serialVersionUID = 18711008L;
45    
46    public IllegalFormatPrecisionException(int precision)    // Note: name fixed by serialization.
47      private int p;
48    
49      public IllegalFormatPrecisionException(int p)
50    {    {
51      super();      super();
52      this.precision = precision;      this.p = p;
53    }    }
54    
55    public int getPrecision()    public int getPrecision()
56    {    {
57      return precision;      return p;
58    }    }
59  }  }

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26