This commit is contained in:
parent
8575693fe5
commit
d1779eb9a8
1 changed files with 4 additions and 6 deletions
|
@ -69,9 +69,7 @@ public class CustomScreen extends BaseItemScreen {
|
|||
}
|
||||
|
||||
static void build_ui(JsonValue layout,Table table, CustomScreen screen){
|
||||
Iterator<JsonValue> iter = layout.iterator();
|
||||
while (iter.hasNext()){
|
||||
JsonValue data = iter.next();
|
||||
for (JsonValue data : layout) {
|
||||
String type = data.getString("type", "");
|
||||
if (type.isEmpty())
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue