Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/dev/DevImpl.java

Diff revisions: vs.
  @@ -1,20 +1,16 @@
1 1 // This Source Code is in the Public Domain per: http://unlicense.org
2 2 package org.litesoft.GWT.client.dev;
3 3
4 - class DevImpl
5 - {
6 - public boolean isDevMode()
7 - {
4 + class DevImpl {
5 + public boolean isDevMode() {
8 6 return false;
9 7 }
10 8
11 - public String state()
12 - {
9 + public String state() {
13 10 return "disabled";
14 11 }
15 12
16 - public void init( Object pHandlerSharedObject )
17 - {
13 + public void init( Object pHandlerSharedObject ) {
18 14 // NOOP
19 15 }
20 16 }