We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd313c6 commit 5c3fa69Copy full SHA for 5c3fa69
1 file changed
java/src/processing/mode/java/debug/VariableNode.java
@@ -399,7 +399,10 @@ public int hashCode() {
399
private String describeArray(String fullDescription) {
400
Matcher matcher = ARRAY_REGEX.matcher(fullDescription);
401
StringJoiner joiner = new StringJoiner("");
402
- System.out.println(matcher.matches());
+ if (!matcher.matches()) {
403
+ return fullDescription;
404
+ }
405
+
406
joiner.add(matcher.group("prefix")); // Type without brackets
407
joiner.add(matcher.group("bounded")); // Brackets with numbers
408
joiner.add(matcher.group("unbounded")); // Brackets without numbers
0 commit comments