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
ff6ea709
Commit
ff6ea709
authored
Jun 12, 2004
by
Mark Wielaard
Committed by
Mark Wielaard
Jun 12, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* javax/swing/RepaintManager.java
(paintDirtyRegions): Use entrySet(), not values(). From-SVN: r83025
parent
8204210b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
libjava/ChangeLog
+5
-0
libjava/javax/swing/RepaintManager.java
+1
-1
No files found.
libjava/ChangeLog
View file @
ff6ea709
2004
-
06
-
12
Mark
Wielaard
<
mark
@
klomp
.
org
>
*
javax
/
swing
/
RepaintManager
.
java
(
paintDirtyRegions
):
Use
entrySet
(),
not
values
().
2004
-
06
-
10
Mark
Wielaard
<
mark
@
klomp
.
org
>
2004
-
06
-
10
Mark
Wielaard
<
mark
@
klomp
.
org
>
*
jni
.
cc
(
_Jv_JNI_GetAnyMethodID
):
Add
name
and
signature
to
*
jni
.
cc
(
_Jv_JNI_GetAnyMethodID
):
Add
name
and
signature
to
...
...
libjava/javax/swing/RepaintManager.java
View file @
ff6ea709
...
@@ -438,7 +438,7 @@ public class RepaintManager
...
@@ -438,7 +438,7 @@ public class RepaintManager
dirtyComponents
.
clear
();
dirtyComponents
.
clear
();
// step 2: paint those roots
// step 2: paint those roots
Iterator
i
=
roots
.
values
().
iterator
();
Iterator
i
=
roots
.
entrySet
().
iterator
();
while
(
i
.
hasNext
())
while
(
i
.
hasNext
())
{
{
Map
.
Entry
ent
=
(
Map
.
Entry
)
i
.
next
();
Map
.
Entry
ent
=
(
Map
.
Entry
)
i
.
next
();
...
...
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