From 3fe8ce051d6d0d2da456434a3f6e7bc4e95c9281 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 29 Jul 2014 05:08:16 +0200 Subject: WindowImpl: Fix intendation --- src/newt/classes/jogamp/newt/WindowImpl.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/newt/classes/jogamp') diff --git a/src/newt/classes/jogamp/newt/WindowImpl.java b/src/newt/classes/jogamp/newt/WindowImpl.java index 68d3e93d6..ca6ffa18b 100644 --- a/src/newt/classes/jogamp/newt/WindowImpl.java +++ b/src/newt/classes/jogamp/newt/WindowImpl.java @@ -1119,8 +1119,7 @@ public abstract class WindowImpl implements Window, NEWTEventConsumer if(childWindows.size()>0) { // avoid ConcurrentModificationException: parent -> child -> parent.removeChild(this) @SuppressWarnings("unchecked") - final - ArrayList clonedChildWindows = (ArrayList) childWindows.clone(); + final ArrayList clonedChildWindows = (ArrayList) childWindows.clone(); while( clonedChildWindows.size() > 0 ) { final NativeWindow nw = clonedChildWindows.remove(0); if(nw instanceof WindowImpl) { -- cgit v1.2.3