aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/external/json/JSONStringer.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-09-05 19:50:56 +0300
committerLeif Åstrand <leif@vaadin.com>2012-09-05 19:51:15 +0300
commit7d25670284b11c7c62ba25183f265227cb3dba83 (patch)
treec8e76eb70dd3cdd5cf59a99419635f2188b25c24 /server/src/com/vaadin/external/json/JSONStringer.java
parent1d0c96de9595c243d88471476d21e5f248be63f7 (diff)
downloadvaadin-framework-7d25670284b11c7c62ba25183f265227cb3dba83.tar.gz
vaadin-framework-7d25670284b11c7c62ba25183f265227cb3dba83.zip
Reformat project
Diffstat (limited to 'server/src/com/vaadin/external/json/JSONStringer.java')
-rw-r--r--server/src/com/vaadin/external/json/JSONStringer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/external/json/JSONStringer.java b/server/src/com/vaadin/external/json/JSONStringer.java
index ae905cb15f..b5917222b1 100644
--- a/server/src/com/vaadin/external/json/JSONStringer.java
+++ b/server/src/com/vaadin/external/json/JSONStringer.java
@@ -79,6 +79,6 @@ public class JSONStringer extends JSONWriter {
*/
@Override
public String toString() {
- return this.mode == 'd' ? this.writer.toString() : null;
+ return mode == 'd' ? writer.toString() : null;
}
}