Skip to content

Commit

Permalink
Add rotation array (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alse72 authored Jan 18, 2024
1 parent 40e985f commit ab0cd69
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cleanFiles/src/Property.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ public Extended removeEmptyFields() {
private String progressDescription;
private com.google.gson.JsonArray bubbles;
private com.google.gson.JsonArray keywords;
private com.google.gson.JsonArray rotation;
private Inventory inventory;
private Extended extended;

Expand All @@ -119,6 +120,7 @@ public boolean isEmpty() {
&& (progressDescription == null || progressDescription.isBlank())
&& (bubbles == null || bubbles.isJsonNull())
&& (keywords == null || keywords.isJsonNull())
&& (rotation == null || rotation.isJsonNull())
&& (inventory == null || inventory.isEmpty())
&& (extended == null || extended.isEmpty());
}
Expand Down

0 comments on commit ab0cd69

Please sign in to comment.