Skip to content

Commit 83e998c

Browse files
committed
Fix FoldingRules.toString to print markers
Markers label was added but the actual value wasn't.
1 parent a3d1dae commit 83e998c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • org.eclipse.tm4e.languageconfiguration/src/main/java/org/eclipse/tm4e/languageconfiguration/internal/model

org.eclipse.tm4e.languageconfiguration/src/main/java/org/eclipse/tm4e/languageconfiguration/internal/model/FoldingRules.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) 2018 Red Hat Inc. and others.
2+
* Copyright (c) 2018, 2025 Red Hat Inc. and others.
33
* This program and the accompanying materials are made
44
* available under the terms of the Eclipse Public License 2.0
55
* which is available at https://www.eclipse.org/legal/epl-2.0/
@@ -63,7 +63,7 @@ public FoldingRules(final boolean offSide, final RegExPattern markersStart, fina
6363
@Override
6464
public String toString() {
6565
return StringUtils.toString(this, sb -> sb
66-
.append("markers=").append(", ")
66+
.append("markers=").append(markers).append(", ")
6767
.append("offSide=").append(offSide));
6868
}
6969
}

0 commit comments

Comments
 (0)