Skip to content

Commit

Permalink
unrevert change
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed May 31, 2024
1 parent 4c0a936 commit 86d0f93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/lucee/runtime/type/util/StructUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ public static Set<String> keySet(Struct sct) {

public static DumpTable toDumpTable(Struct sct, String title, PageContext pageContext, int maxlevel, DumpProperties dp) {
Key[] keys = CollectionUtil.keys(sct);
if (!(sct instanceof StructSupport) || ((StructSupport) sct).getType() != Struct.TYPE_LINKED) keys = order(sct, CollectionUtil.keys(sct));
//if (!(sct instanceof StructSupport)) keys = order(sct, CollectionUtil.keys(sct));
//if (!(sct instanceof StructSupport) || ((StructSupport) sct).getType() != Struct.TYPE_LINKED) keys = order(sct, CollectionUtil.keys(sct));
if (!(sct instanceof StructSupport)) keys = order(sct, CollectionUtil.keys(sct));
DumpTable table = new DumpTable("struct", "#468faf", "#89c2d9", "#000000");// "#9999ff","#ccccff","#000000"

int maxkeys = dp.getMaxKeys();
Expand Down

0 comments on commit 86d0f93

Please sign in to comment.