Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.text/src/org/eclipse/jface/text/IRepairableDocument.java')
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/IRepairableDocument.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/IRepairableDocument.java b/org.eclipse.text/src/org/eclipse/jface/text/IRepairableDocument.java
deleted file mode 100644
index 1d6c7a00c57..00000000000
--- a/org.eclipse.text/src/org/eclipse/jface/text/IRepairableDocument.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.jface.text;
-
-/**
- * Tagging interface to be implemented by
- * {@link org.eclipse.jface.text.IDocument}implementers that offer a line
- * repair method on the documents.
- *
- * @see org.eclipse.jface.text.IDocument
- * @since 3.0
- */
-public interface IRepairableDocument {
-
- /**
- * Repairs the line information of the document implementing this interface.
- */
- void repairLineInformation();
-}

Back to the top