Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.search/search/org/eclipse/search/internal/core/text/IMatchCollector.java')
-rw-r--r--org.eclipse.search/search/org/eclipse/search/internal/core/text/IMatchCollector.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/org.eclipse.search/search/org/eclipse/search/internal/core/text/IMatchCollector.java b/org.eclipse.search/search/org/eclipse/search/internal/core/text/IMatchCollector.java
deleted file mode 100644
index 936305fd3aa..00000000000
--- a/org.eclipse.search/search/org/eclipse/search/internal/core/text/IMatchCollector.java
+++ /dev/null
@@ -1,21 +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.search.internal.core.text;
-
-import java.lang.reflect.InvocationTargetException;
-
-/**
- * @author Thomas Mäder
- *
- */
-public interface IMatchCollector {
- void accept(String line, int start, int length, int lineNumber) throws InvocationTargetException;
-}

Back to the top