Skip to content

Commit

Permalink
Merge branch 'release/28.x'
Browse files Browse the repository at this point in the history
* release/28.x:
  #4038 -. Odd message logged to stdout
  • Loading branch information
reckart committed May 29, 2023
2 parents d626aac + e1ac4ad commit 0e3c2ca
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public class DiamSidebarManagerPrefs

public List<String> getPinnedGroups()
{
System.out.println("[" + hashCode() + "] GET " + String.join(",", pinnedGroups));
return pinnedGroups;
}

Expand All @@ -45,6 +44,5 @@ public void setPinnedGroups(List<String> aPinnedGroups)
if (aPinnedGroups != null) {
pinnedGroups.addAll(aPinnedGroups);
}
System.out.println("[" + hashCode() + "] SET " + String.join(",", aPinnedGroups));
}
}

0 comments on commit 0e3c2ca

Please sign in to comment.