summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-05 17:57:31 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-05 17:57:31 +0000
commita3b0e823572c79774c37e5421857904544dc98c7 (patch)
treedb29010313fe1c78514bdaf4f315947fae856643
parent5ddc8fb8abd3a853d7196d8560bfb5f5dc4b6d3b (diff)
downloadgcc-a3b0e823572c79774c37e5421857904544dc98c7.tar.gz
2003-06-05 Scott Gilbertson <scottg@mantatest.com>
* java/text/SimpleDateFormat.java (SimpleDateFormat): Added numberFormat.setParseIntegerOnly(true). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67504 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--libjava/ChangeLog5
-rw-r--r--libjava/java/text/SimpleDateFormat.java5
2 files changed, 9 insertions, 1 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index f6c84792ccc..cef7d571079 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-05 Scott Gilbertson <scottg@mantatest.com>
+
+ * java/text/SimpleDateFormat.java (SimpleDateFormat): Added
+ numberFormat.setParseIntegerOnly(true).
+
2003-06-05 Bert Deknuydt <Bert.Deknuydt@esat.kuleuven.ac.be>
* include/posix-threads.h: Include <machine/pal.h> on OSF.
diff --git a/libjava/java/text/SimpleDateFormat.java b/libjava/java/text/SimpleDateFormat.java
index c1c79d9cdc2..06ab66f5a70 100644
--- a/libjava/java/text/SimpleDateFormat.java
+++ b/libjava/java/text/SimpleDateFormat.java
@@ -1,6 +1,6 @@
/* SimpleDateFormat.java -- A class for parsing/formating simple
date constructs
- Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -182,6 +182,7 @@ public class SimpleDateFormat extends DateFormat
compileFormat(pattern);
numberFormat = NumberFormat.getInstance(locale);
numberFormat.setGroupingUsed (false);
+ numberFormat.setParseIntegerOnly (true);
}
/**
@@ -208,6 +209,7 @@ public class SimpleDateFormat extends DateFormat
this.pattern = pattern;
numberFormat = NumberFormat.getInstance(locale);
numberFormat.setGroupingUsed (false);
+ numberFormat.setParseIntegerOnly (true);
}
/**
@@ -225,6 +227,7 @@ public class SimpleDateFormat extends DateFormat
this.pattern = pattern;
numberFormat = NumberFormat.getInstance();
numberFormat.setGroupingUsed (false);
+ numberFormat.setParseIntegerOnly (true);
}
// What is the difference between localized and unlocalized? The