From 84e4622c8f038a48304936c1912082fd841b0d50 Mon Sep 17 00:00:00 2001 From: Manolo Carrasco Date: Mon, 17 Jan 2011 10:00:48 +0000 Subject: Removed unused static variable. --- .../src/main/java/com/google/gwt/query/client/GQuery.java | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'gwtquery-core') diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java index b9f04f3f..480ac8dd 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java @@ -154,13 +154,24 @@ public class GQuery implements Lazy { }-*/; } + /** + * The body element in the current page. + */ public static final BodyElement body = Document.get().getBody(); + /** + * The document element in the current page. + */ public static final Document document = Document.get(); - public static boolean fxOff = false; + /** + * A static reference to the GQuery class. + */ public static Class GQUERY = GQuery.class; + /** + * The window object. + */ public static final Element window = window(); private static DataCache dataCache = null; -- cgit v1.2.3