Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvlorenzo2012-12-11 09:59:55 +0000
committervlorenzo2012-12-11 09:59:55 +0000
commitbfd3852226011f658ff8d7e2dc7119101a154775 (patch)
tree785bee32f08ae273591187be323a44a28d7cff7b
parent5ac6adc39e3048f4af2c6e05b57293e6fce6dc37 (diff)
downloadorg.eclipse.papyrus-bfd3852226011f658ff8d7e2dc7119101a154775.tar.gz
org.eclipse.papyrus-bfd3852226011f658ff8d7e2dc7119101a154775.tar.xz
org.eclipse.papyrus-bfd3852226011f658ff8d7e2dc7119101a154775.zip
330183: [Usability] Papyrus shall enable comparing/merging models.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=330183 remove an UnsupportedOperationException
-rw-r--r--extraplugins/uml/compare/org.eclipse.papyrus.uml.compare.file/src/org/eclipse/papyrus/uml/compare/file/handler/CompareUMLFileInput.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/extraplugins/uml/compare/org.eclipse.papyrus.uml.compare.file/src/org/eclipse/papyrus/uml/compare/file/handler/CompareUMLFileInput.java b/extraplugins/uml/compare/org.eclipse.papyrus.uml.compare.file/src/org/eclipse/papyrus/uml/compare/file/handler/CompareUMLFileInput.java
index b61e9b947c5..3ac32dd5bd5 100644
--- a/extraplugins/uml/compare/org.eclipse.papyrus.uml.compare.file/src/org/eclipse/papyrus/uml/compare/file/handler/CompareUMLFileInput.java
+++ b/extraplugins/uml/compare/org.eclipse.papyrus.uml.compare.file/src/org/eclipse/papyrus/uml/compare/file/handler/CompareUMLFileInput.java
@@ -102,7 +102,8 @@ public class CompareUMLFileInput implements ICompareUMLFileInput {
* @return
*/
public Object getAdapter(Class adapter) {
- throw new UnsupportedOperationException();
+ return null;
+// throw new UnsupportedOperationException();
}
/**

Back to the top