Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.text/src/org/eclipse/jface/text/AbstractLineTracker.java')
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/AbstractLineTracker.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/AbstractLineTracker.java b/org.eclipse.text/src/org/eclipse/jface/text/AbstractLineTracker.java
index 88e3ecc6571..b13fa0479d7 100644
--- a/org.eclipse.text/src/org/eclipse/jface/text/AbstractLineTracker.java
+++ b/org.eclipse.text/src/org/eclipse/jface/text/AbstractLineTracker.java
@@ -46,8 +46,9 @@ public abstract class AbstractLineTracker implements ILineTracker, ILineTrackerE
* Combines the information of the occurrence of a line delimiter. <code>delimiterIndex</code>
* is the index where a line delimiter starts, whereas <code>delimiterLength</code>,
* indicates the length of the delimiter.
+ * @since 3.10
*/
- protected static class DelimiterInfo {
+ public static class DelimiterInfo {
public int delimiterIndex;
public int delimiterLength;
public String delimiter;

Back to the top