commit | 6022df016248cb753f967beb7a1fe03c42d6675b | [log] [tgz] |
---|---|---|
author | jgw@google.com <jgw@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon Nov 02 20:05:30 2009 +0000 |
committer | jgw@google.com <jgw@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon Nov 02 20:05:30 2009 +0000 |
tree | 607cef69560e7ca18b758d7fcba6ed48a25c238f | |
parent | 7203494e6e5000f25d3b648c3eea9866edf69822 [diff] |
LayoutImpl contains state and should not have been static. Fixing this. git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@6584 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/layout/client/Layout.java b/user/src/com/google/gwt/layout/client/Layout.java index 8d678de..483a805 100644 --- a/user/src/com/google/gwt/layout/client/Layout.java +++ b/user/src/com/google/gwt/layout/client/Layout.java
@@ -317,7 +317,7 @@ } } - private static LayoutImpl impl = GWT.create(LayoutImpl.class); + private LayoutImpl impl = GWT.create(LayoutImpl.class); private List<Layer> layers = new ArrayList<Layer>(); private final Element parentElem;