Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/qt
diff options
context:
space:
mode:
authorNathan Ridge2016-12-12 21:23:45 +0000
committerNathan Ridge2016-12-19 18:41:20 +0000
commit3f3b8b2ee763596c22ab9cc62ccafba39bb75c63 (patch)
tree71ca92fa22467e0a45f2c93d1f397f2b49787369 /qt
parent4405ae2580f273e3336aa8fcf96ed9ecf6971459 (diff)
downloadorg.eclipse.cdt-3f3b8b2ee763596c22ab9cc62ccafba39bb75c63.tar.gz
org.eclipse.cdt-3f3b8b2ee763596c22ab9cc62ccafba39bb75c63.tar.xz
org.eclipse.cdt-3f3b8b2ee763596c22ab9cc62ccafba39bb75c63.zip
Remove the redundant ISerializableExecution interface
Diffstat (limited to 'qt')
-rw-r--r--qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/pdom/QtPDOMLinkage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/pdom/QtPDOMLinkage.java b/qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/pdom/QtPDOMLinkage.java
index 0cc32d2c064..97dc60678ef 100644
--- a/qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/pdom/QtPDOMLinkage.java
+++ b/qt/org.eclipse.cdt.qt.core/src/org/eclipse/cdt/internal/qt/core/pdom/QtPDOMLinkage.java
@@ -17,9 +17,9 @@ import org.eclipse.cdt.core.dom.ILinkage;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IBinding;
import org.eclipse.cdt.core.dom.ast.IType;
-import org.eclipse.cdt.internal.core.dom.parser.ISerializableExecution;
import org.eclipse.cdt.internal.core.dom.parser.ITypeMarshalBuffer;
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPEvaluation;
+import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPExecution;
import org.eclipse.cdt.internal.core.pdom.PDOM;
import org.eclipse.cdt.internal.core.pdom.db.Database;
import org.eclipse.cdt.internal.core.pdom.db.IBTreeComparator;
@@ -299,7 +299,7 @@ public class QtPDOMLinkage extends PDOMLinkage {
}
@Override
- public ISerializableExecution unmarshalExecution(ITypeMarshalBuffer typeMarhsalBuffer) throws CoreException {
+ public ICPPExecution unmarshalExecution(ITypeMarshalBuffer typeMarhsalBuffer) throws CoreException {
throw new CoreException(Activator.error("Qt Linkage does not marshal executions")); //$NON-NLS-1$
}
}

Back to the top