Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare/plugins/org.eclipse.compare.core/src/org/eclipse/compare/patch/PatchParser.java')
-rw-r--r--bundles/org.eclipse.compare/plugins/org.eclipse.compare.core/src/org/eclipse/compare/patch/PatchParser.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/bundles/org.eclipse.compare/plugins/org.eclipse.compare.core/src/org/eclipse/compare/patch/PatchParser.java b/bundles/org.eclipse.compare/plugins/org.eclipse.compare.core/src/org/eclipse/compare/patch/PatchParser.java
deleted file mode 100644
index cd77da853..000000000
--- a/bundles/org.eclipse.compare/plugins/org.eclipse.compare.core/src/org/eclipse/compare/patch/PatchParser.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2008, 2009 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.compare.patch;
-
-import java.io.BufferedReader;
-import java.io.IOException;
-
-import org.eclipse.compare.internal.core.ComparePlugin;
-import org.eclipse.compare.internal.core.patch.PatchReader;
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Status;
-
-/**
- * Helper class for parsing patches.
- *
- * @since org.eclipse.compare.core 3.5
- */
-public class PatchParser {
-
- /**
- * Parse the given patch and return the set of file patches that it
- * contains.
- *
- * @param content
- * a patch reader creator
- * @return the set of file patches that the patch contains
- * @throws CoreException
- * if an error occurs reading the contents
- */
- public static IFilePatch2[] parsePatch(ReaderCreator content)
- throws CoreException {
- BufferedReader reader = new BufferedReader(content.createReader());
- try {
- PatchReader patchReader = new PatchReader();
- patchReader.parse(reader);
- return patchReader.getAdjustedDiffs();
- } catch (IOException e) {
- throw new CoreException(new Status(IStatus.ERROR,
- ComparePlugin.PLUGIN_ID, 0, e.getMessage(), e));
- } finally {
- try {
- reader.close();
- } catch (IOException e) {
- // ignored
- }
- }
- }
-}

Back to the top