Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/NullBinaryParser.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/NullBinaryParser.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/NullBinaryParser.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/NullBinaryParser.java
deleted file mode 100644
index cf4c4586f09..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/NullBinaryParser.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package org.eclipse.cdt.internal.core.model;
-
-/*
- * (c) Copyright IBM Corp. 2000, 2001.
- * All Rights Reserved.
- */
-
-import java.io.IOException;
-
-import org.eclipse.cdt.core.IBinaryParser;
-import org.eclipse.core.runtime.IPath;
-
-/**
- */
-public class NullBinaryParser implements IBinaryParser {
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.core.IBinaryParser#getBinary(org.eclipse.core.runtime.IPath)
- */
- public IBinaryFile getBinary(IPath path) throws IOException {
- throw new IOException("not a binary file");
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.core.IBinaryParser#getFormat()
- */
- public String getFormat() {
- return "Null Format";
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.core.IBinaryParser#isBinary(byte[], org.eclipse.core.runtime.IPath)
- */
- public boolean isBinary(byte[] array, IPath path) {
- return false;
- }
-
-}

Back to the top