A for effort on the auto-naming Eclipse, but there's no need to drag the underscore along. Too bad you can't make generic arrays not suck.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@601 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Charlie Groves
2008-08-04 23:51:07 +00:00
parent 5567dcf2a1
commit 2b5a96b147
@@ -411,8 +411,8 @@ public abstract class FrameManager
}
// tick all of our frame participants
for (Object _participant : _participants) {
FrameParticipant part = (FrameParticipant)_participant;
for (Object participant : _participants) {
FrameParticipant part = (FrameParticipant)participant;
if (part == null) {
continue;
}
@@ -467,8 +467,8 @@ public abstract class FrameManager
{
// paint our frame participants (which want to be handled specially)
int painted = 0;
for (Object _participant : _participants) {
FrameParticipant part = (FrameParticipant)_participant;
for (Object participant : _participants) {
FrameParticipant part = (FrameParticipant)participant;
if (part == null) {
continue;
}