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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user