X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=dashboard%2Fwebapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fconfig%2FSpringContextCache.java;h=a2f3d8f8a665ed9efde75167893301ae41dbedeb;hb=592ce20ec359928373de2e7f06214c8f8ad73c20;hp=3a877824d610eefa2dad4b30cdc5e8dd6a1f5158;hpb=b96fd22c2a19b61bbd9d4c71c4f4a8fbb3741df1;p=nonrtric.git diff --git a/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java b/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java index 3a877824..a2f3d8f8 100644 --- a/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java +++ b/dashboard/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java @@ -30,15 +30,15 @@ import org.springframework.stereotype.Component; @Component public class SpringContextCache implements ApplicationContextAware { - private static ApplicationContext applicationContext = null; + private static ApplicationContext applicationContext = null; - @Override - public void setApplicationContext(final ApplicationContext appContext) throws BeansException { - applicationContext = appContext; - } + @Override + public void setApplicationContext(final ApplicationContext appContext) throws BeansException { + applicationContext = appContext; + } - public static ApplicationContext getApplicationContext() { - return applicationContext; - } + public static ApplicationContext getApplicationContext() { + return applicationContext; + } }