Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/#479_Improving_the_remov…
Browse files Browse the repository at this point in the history
…al_of_old_values' into feature/#479_Improving_the_removal_of_old_values
  • Loading branch information
grzesiekb committed Mar 2, 2018
2 parents a7c32cd + 76889b2 commit 158ed2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/serotonin/mango/view/View.java
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ public void jsonDeserialize(JsonReader reader, JsonObject json)

JsonArray jsonSharers = json.getJsonArray("sharingUsers");
if (jsonSharers != null) {
viewUsers.clear();
viewUsers = new CopyOnWriteArrayList<ShareUser>();

for (JsonValue jv : jsonSharers.getElements()) {
ShareUser shareUser = reader.readPropertyValue(jv,
Expand Down

0 comments on commit 158ed2d

Please sign in to comment.