We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 632bcf6 commit 58837baCopy full SHA for 58837ba
src/gui/org/deidentifier/arx/gui/DebugData.java
@@ -81,8 +81,11 @@ private String getDebugData(DataDefinition definition){
81
*/
82
private String getDebugData(Hierarchy hierarchy){
83
84
- if (hierarchy==null || hierarchy.getHierarchy()==null || hierarchy.getHierarchy().length==0) return "empty"; //$NON-NLS-1$
85
- else return "height="+hierarchy.getHierarchy()[0].length; //$NON-NLS-1$
+ if (hierarchy == null || hierarchy.getHierarchy() == null || hierarchy.getHierarchy().length == 0) {
+ return "empty"; //$NON-NLS-1$
86
+ } else {
87
+ return "height=" + hierarchy.getHierarchy()[0].length; //$NON-NLS-1$
88
+ }
89
}
90
91
/**
0 commit comments