Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvladt2011-01-24 22:41:47 +0000
committervladt2011-01-24 22:41:47 +0000
commit98db1ee036cf59ae6136c49013e8114e13bd0a4c (patch)
tree428032d052d531319127e64e9891100b2ceb4e34
parent7630be0a1e61f7248abb3e8e6f4461f6ae24d15c (diff)
downloadm2e-core-98db1ee036cf59ae6136c49013e8114e13bd0a4c.tar.gz
m2e-core-98db1ee036cf59ae6136c49013e8114e13bd0a4c.tar.xz
m2e-core-98db1ee036cf59ae6136c49013e8114e13bd0a4c.zip
Cleanup
-rw-r--r--org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecycle/LifecycleMappingFactory.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecycle/LifecycleMappingFactory.java b/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecycle/LifecycleMappingFactory.java
index 342ba630..264a2350 100644
--- a/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecycle/LifecycleMappingFactory.java
+++ b/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecycle/LifecycleMappingFactory.java
@@ -681,7 +681,7 @@ public class LifecycleMappingFactory {
/**
* Returns lifecycle mapping metadata sources provided by all installed bundles
*/
- public static List<LifecycleMappingMetadataSource> getBundleMetadataSources() {
+ private static List<LifecycleMappingMetadataSource> getBundleMetadataSources() {
// XXX cache!
ArrayList<LifecycleMappingMetadataSource> sources = new ArrayList<LifecycleMappingMetadataSource>();
@@ -731,7 +731,7 @@ public class LifecycleMappingFactory {
return null;
}
- public static boolean isPrimaryMapping(PluginExecutionMetadata executionMetadata) {
+ private static boolean isPrimaryMapping(PluginExecutionMetadata executionMetadata) {
if(executionMetadata == null) {
return false;
}
@@ -745,7 +745,7 @@ public class LifecycleMappingFactory {
return true;
}
- public static boolean isSecondaryMapping(PluginExecutionMetadata metadata, PluginExecutionMetadata primaryMetadata) {
+ private static boolean isSecondaryMapping(PluginExecutionMetadata metadata, PluginExecutionMetadata primaryMetadata) {
if(metadata == null || primaryMetadata == null) {
return false;
}

Back to the top