Might as well go right to the source.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1326 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2003-11-25 16:47:11 +00:00
parent 07ba778fd2
commit 77f838e2da
@@ -1,5 +1,5 @@
// //
// $Id: IntField.java,v 1.2 2003/11/25 04:08:39 eric Exp $ // $Id: IntField.java,v 1.3 2003/11/25 16:47:11 mdb Exp $
package com.samskivert.swing; package com.samskivert.swing;
@@ -54,7 +54,7 @@ public class IntField extends JTextField
*/ */
public void setValue (int value) public void setValue (int value)
{ {
setText("" + value); setText(Integer.toString(value));
} }
/** /**