From 7cb6e6b72375fa384c509651657aeba3f67110be Mon Sep 17 00:00:00 2001 From: Rémi Verschelde Date: Sun, 10 Dec 2017 01:16:07 +0100 Subject: Style: Apply clang-format to Java files Only those from org/godotengine/godot though, not the thirdparty ones. --- platform/android/java/src/org/godotengine/godot/Dictionary.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'platform/android/java/src/org/godotengine/godot/Dictionary.java') diff --git a/platform/android/java/src/org/godotengine/godot/Dictionary.java b/platform/android/java/src/org/godotengine/godot/Dictionary.java index ed91fedd8..2bc9c083a 100644 --- a/platform/android/java/src/org/godotengine/godot/Dictionary.java +++ b/platform/android/java/src/org/godotengine/godot/Dictionary.java @@ -32,7 +32,6 @@ package org.godotengine.godot; import java.util.HashMap; import java.util.Set; - public class Dictionary extends HashMap { protected String[] keys_cache; @@ -40,7 +39,7 @@ public class Dictionary extends HashMap { public String[] get_keys() { String[] ret = new String[size()]; - int i=0; + int i = 0; Set keys = keySet(); for (String key : keys) { @@ -54,7 +53,7 @@ public class Dictionary extends HashMap { public Object[] get_values() { Object[] ret = new Object[size()]; - int i=0; + int i = 0; Set keys = keySet(); for (String key : keys) { @@ -71,7 +70,7 @@ public class Dictionary extends HashMap { public void set_values(Object[] vals) { - int i=0; + int i = 0; for (String key : keys_cache) { put(key, vals[i]); i++; -- cgit v1.2.3-70-g09d2