Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
d70dd6c8
Commit
d70dd6c8
authored
Sep 06, 2001
by
Tom Tromey
Committed by
Tom Tromey
Sep 06, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* java/util/Properties.java: Re-merged from Classpath.
From-SVN: r45442
parent
1aae372e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
libjava/ChangeLog
+2
-0
libjava/java/util/Properties.java
+8
-4
No files found.
libjava/ChangeLog
View file @
d70dd6c8
2001-09-05 Tom Tromey <tromey@redhat.com>
* java/util/Properties.java: Re-merged from Classpath.
From Eric Blake, via Classpath:
* java/lang/String.java (CaseInsensitiveComparator): New class.
(CASE_INSENSITIVE_ORDER): Use instance of CaseInsensitiveComparator.
...
...
libjava/java/util/Properties.java
View file @
d70dd6c8
/* java.util.Properties
Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
Copyright (C) 1998, 1999, 2000
, 2001
Free Software Foundation, Inc.
This file is part of GNU Classpath.
...
...
@@ -61,7 +61,8 @@ import java.io.*;
* of <code>get/put</code>.
*
* @see PropertyResourceBundle
* @author Jochen Hoenicke */
* @author Jochen Hoenicke
*/
public
class
Properties
extends
Hashtable
{
/**
...
...
@@ -128,8 +129,9 @@ public class Properties extends Hashtable
* from the input. */
public
void
load
(
InputStream
inStream
)
throws
IOException
{
// The spec says that the file must be encoded using ISO-8859-1.
BufferedReader
reader
=
new
BufferedReader
(
new
InputStreamReader
(
inStream
));
new
BufferedReader
(
new
InputStreamReader
(
inStream
,
"ISO-8859-1"
));
String
line
;
while
((
line
=
reader
.
readLine
())
!=
null
)
...
...
@@ -302,7 +304,9 @@ public class Properties extends Hashtable
*/
public
void
store
(
OutputStream
out
,
String
header
)
throws
IOException
{
PrintWriter
writer
=
new
PrintWriter
(
out
);
// The spec says that the file must be encoded using ISO-8859-1.
PrintWriter
writer
=
new
PrintWriter
(
new
OutputStreamWriter
(
out
,
"ISO-8859-1"
));
if
(
header
!=
null
)
writer
.
println
(
"#"
+
header
);
writer
.
println
(
"#"
+
new
Date
().
toString
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment