Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Finkbeiner2015-08-25 19:32:06 +0000
committerAndrew M. Finkbeiner2015-08-25 19:32:06 +0000
commit20659da87164ccaac9d73aa4a1205eb0c7967062 (patch)
tree8f94c484d4c8f882ac39559791c115e2747a3fa2
parent347953fa9a67ee0ae5dd88dc64a386a6abca1af9 (diff)
parent12717f2801022e6f3ce2628d5635df3f35bbb88c (diff)
downloadorg.eclipse.ote-20659da87164ccaac9d73aa4a1205eb0c7967062.tar.gz
org.eclipse.ote-20659da87164ccaac9d73aa4a1205eb0c7967062.tar.xz
org.eclipse.ote-20659da87164ccaac9d73aa4a1205eb0c7967062.zip
Merge branch 'amf/update_method' into sprint7908_31_2015sprint79
-rw-r--r--org.eclipse.ote.services.core/src/org/eclipse/ote/services/core/ServiceUtility.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ote.services.core/src/org/eclipse/ote/services/core/ServiceUtility.java b/org.eclipse.ote.services.core/src/org/eclipse/ote/services/core/ServiceUtility.java
index 01a510d42..d61dd79d6 100644
--- a/org.eclipse.ote.services.core/src/org/eclipse/ote/services/core/ServiceUtility.java
+++ b/org.eclipse.ote.services.core/src/org/eclipse/ote/services/core/ServiceUtility.java
@@ -68,7 +68,7 @@ public class ServiceUtility {
}
@SuppressWarnings({ "rawtypes", "unchecked" })
- private static <T> T getService(Class<T> clazz, boolean logit) {
+ public static <T> T getService(Class<T> clazz, boolean logit) {
BundleContext context = getContext();
if(context == null){
if(logit){

Back to the top