Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2012-08-14 11:05:20 +0000
committerIgor Fedorenko2012-08-16 11:45:47 +0000
commit0ca9fa120c251db1bf613383788af4775fce1692 (patch)
treee77ecc92ea7cd0a13f0170bd3e3ab35b1c735333 /org.eclipse.m2e.tests.common
parent4f4c40b364e952c5f57321d997476a70d9b35a1a (diff)
downloadm2e-core-0ca9fa120c251db1bf613383788af4775fce1692.tar.gz
m2e-core-0ca9fa120c251db1bf613383788af4775fce1692.tar.xz
m2e-core-0ca9fa120c251db1bf613383788af4775fce1692.zip
350414 separate quick-fix for workspace mapping; cleanup
Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
Diffstat (limited to 'org.eclipse.m2e.tests.common')
-rw-r--r--org.eclipse.m2e.tests.common/src/org/eclipse/m2e/tests/common/AbstractLifecycleMappingTest.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/org.eclipse.m2e.tests.common/src/org/eclipse/m2e/tests/common/AbstractLifecycleMappingTest.java b/org.eclipse.m2e.tests.common/src/org/eclipse/m2e/tests/common/AbstractLifecycleMappingTest.java
index 9ff3a467..89eee3de 100644
--- a/org.eclipse.m2e.tests.common/src/org/eclipse/m2e/tests/common/AbstractLifecycleMappingTest.java
+++ b/org.eclipse.m2e.tests.common/src/org/eclipse/m2e/tests/common/AbstractLifecycleMappingTest.java
@@ -94,18 +94,6 @@ public abstract class AbstractLifecycleMappingTest extends AbstractMavenProjectT
throws IOException, XmlPullParserException {
return loadLifecycleMappingMetadataSourceInternal(new File(metadataFilename));
}
-
- protected LifecycleMappingMetadataSource loadWorkspaceLifecycleMappingMetadataSource()
- throws IOException, XmlPullParserException {
- return loadLifecycleMappingMetadataSourceInternal(new File(MavenPluginActivator.getDefault()
- .getMavenConfiguration().getWorkspaceMappingsFile()));
- }
-
- protected void setWorkspaceLifecycleMappingMetadataSource(String newMapping)
- throws IOException, XmlPullParserException {
- MavenPluginActivator.getDefault()
- .getMavenConfiguration().setWorkspaceMappings(newMapping);
- }
/**
* Creates new partially initialised MavenProjectFacade instance

Back to the top