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
63c5d91a
Commit
63c5d91a
authored
Sep 18, 2003
by
Tom Tromey
Committed by
Tom Tromey
Sep 18, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* javax/naming/InitialContext.java: Reindented.
From-SVN: r71535
parent
1eeae5c1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
libjava/ChangeLog
+4
-0
libjava/javax/naming/InitialContext.java
+10
-4
No files found.
libjava/ChangeLog
View file @
63c5d91a
2003
-
09
-
18
Tom
Tromey
<
tromey
@
redhat
.
com
>
*
javax
/
naming
/
InitialContext
.
java
:
Reindented
.
2003
-
09
-
18
Dalibor
Topic
<
robilad
@
kaffe
.
org
>,
2003
-
09
-
18
Dalibor
Topic
<
robilad
@
kaffe
.
org
>,
Helmer
Kraemer
<
hkraemer
@
freenet
.
de
>
Helmer
Kraemer
<
hkraemer
@
freenet
.
de
>
...
...
libjava/javax/naming/InitialContext.java
View file @
63c5d91a
/* InitialContext.java --
/* InitialContext.java --
Copyright (C) 2000, 2002 Free Software Foundation, Inc.
Copyright (C) 2000, 2002
, 2003
Free Software Foundation, Inc.
This file is part of GNU Classpath.
This file is part of GNU Classpath.
...
@@ -119,16 +119,22 @@ public class InitialContext implements Context
...
@@ -119,16 +119,22 @@ public class InitialContext implements Context
URL
url
=
(
URL
)
ep
.
nextElement
();
URL
url
=
(
URL
)
ep
.
nextElement
();
Properties
p
=
new
Properties
();
Properties
p
=
new
Properties
();
try
{
try
{
InputStream
is
=
url
.
openStream
();
InputStream
is
=
url
.
openStream
();
p
.
load
(
is
);
p
.
load
(
is
);
is
.
close
();
is
.
close
();
}
catch
(
IOException
e
)
{}
}
catch
(
IOException
e
)
{
}
merge
(
myProps
,
p
);
merge
(
myProps
,
p
);
}
}
}
}
catch
(
IOException
e
)
{}
catch
(
IOException
e
)
{
}
String
home
=
System
.
getProperty
(
"gnu.classpath.home.url"
);
String
home
=
System
.
getProperty
(
"gnu.classpath.home.url"
);
if
(
home
!=
null
)
if
(
home
!=
null
)
...
...
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