Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortarendt2013-11-26 13:19:45 +0000
committertarendt2013-11-26 13:19:45 +0000
commit84544fc9f7ea1b6a5181fa625afde52ba3598abb (patch)
tree92c2ec4951550bf882dc8a2e9847c2734379ea0e /org.eclipse.emf.refactor.refactoring.analyzer
parenta9ba597812ecd01e5a1a26ac7eb1d6219dc40411 (diff)
downloadorg.eclipse.emf.refactor.refactoring-84544fc9f7ea1b6a5181fa625afde52ba3598abb.tar.gz
org.eclipse.emf.refactor.refactoring-84544fc9f7ea1b6a5181fa625afde52ba3598abb.tar.xz
org.eclipse.emf.refactor.refactoring-84544fc9f7ea1b6a5181fa625afde52ba3598abb.zip
new bins and Compare adapted
Diffstat (limited to 'org.eclipse.emf.refactor.refactoring.analyzer')
-rw-r--r--org.eclipse.emf.refactor.refactoring.analyzer/META-INF/MANIFEST.MF3
-rw-r--r--org.eclipse.emf.refactor.refactoring.analyzer/bin/org/eclipse/emf/refactor/refactoring/analyzer/core/StatisticsButtonCreator$1.classbin8771 -> 8728 bytes
-rw-r--r--org.eclipse.emf.refactor.refactoring.analyzer/src/org/eclipse/emf/refactor/refactoring/analyzer/core/StatisticsButtonCreator.java2
3 files changed, 2 insertions, 3 deletions
diff --git a/org.eclipse.emf.refactor.refactoring.analyzer/META-INF/MANIFEST.MF b/org.eclipse.emf.refactor.refactoring.analyzer/META-INF/MANIFEST.MF
index 923c4a6..aecb1a0 100644
--- a/org.eclipse.emf.refactor.refactoring.analyzer/META-INF/MANIFEST.MF
+++ b/org.eclipse.emf.refactor.refactoring.analyzer/META-INF/MANIFEST.MF
@@ -14,7 +14,6 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.emf.refactor.refactoring;bundle-version="0.7.0",
org.eclipse.emf.refactor.refactoring.runtime;bundle-version="0.7.0",
org.eclipse.ltk.core.refactoring;bundle-version="3.6.0",
- org.eclipse.ltk.ui.refactoring;bundle-version="3.7.0",
- org.eclipse.emf.compare.ui;bundle-version="1.3.2"
+ org.eclipse.ltk.ui.refactoring;bundle-version="3.7.0"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
diff --git a/org.eclipse.emf.refactor.refactoring.analyzer/bin/org/eclipse/emf/refactor/refactoring/analyzer/core/StatisticsButtonCreator$1.class b/org.eclipse.emf.refactor.refactoring.analyzer/bin/org/eclipse/emf/refactor/refactoring/analyzer/core/StatisticsButtonCreator$1.class
index 24b4958..643577a 100644
--- a/org.eclipse.emf.refactor.refactoring.analyzer/bin/org/eclipse/emf/refactor/refactoring/analyzer/core/StatisticsButtonCreator$1.class
+++ b/org.eclipse.emf.refactor.refactoring.analyzer/bin/org/eclipse/emf/refactor/refactoring/analyzer/core/StatisticsButtonCreator$1.class
Binary files differ
diff --git a/org.eclipse.emf.refactor.refactoring.analyzer/src/org/eclipse/emf/refactor/refactoring/analyzer/core/StatisticsButtonCreator.java b/org.eclipse.emf.refactor.refactoring.analyzer/src/org/eclipse/emf/refactor/refactoring/analyzer/core/StatisticsButtonCreator.java
index 43aad95..765dc9b 100644
--- a/org.eclipse.emf.refactor.refactoring.analyzer/src/org/eclipse/emf/refactor/refactoring/analyzer/core/StatisticsButtonCreator.java
+++ b/org.eclipse.emf.refactor.refactoring.analyzer/src/org/eclipse/emf/refactor/refactoring/analyzer/core/StatisticsButtonCreator.java
@@ -52,7 +52,7 @@ public class StatisticsButtonCreator implements IInputPageButtonCreator {
boolean applicable = status.isOK();
if(applicable) {
RefactoringChange c = (RefactoringChange) processor.createChange(new NullProgressMonitor());
- c.getModelCompareInput();
+// c.getModelCompareInput();
EObject rootAfterRefactoring = (EObject) c.getModifiedElement();
EObject rootBeforeRefactoring = (EObject) c.getModifiedElement();
String path = rootBeforeRefactoring.eResource().getURI().toPlatformString(false);

Back to the top