Skip to content

Commit 13b132d

Browse files
authored
Update parser/src/main/java/com/microsoft/gctoolkit/parser/jvm/Decorators.java
1 parent 6039bf5 commit 13b132d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser/src/main/java/com/microsoft/gctoolkit/parser/jvm/Decorators.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ private void extractValues(String line) {
8888
for (int i = 1; i <= decoratorMatcher.groupCount(); i++) {
8989
String group = decoratorMatcher.group(i);
9090
decoratorGroups[i] = group;
91-
if ( group != null)
91+
if (group != null)
9292
numberOfDecorators++;
9393
}
9494
}

0 commit comments

Comments
 (0)