X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fconfig%2FSpringContextCache.java;h=72fe004efcf99ff9b63da901a6663b4b68ff2f96;hb=refs%2Fchanges%2F82%2F2182%2F1;hp=2f1d1f6919e0303a62fd55602cdb6eec8c72906c;hpb=3f812ea25d352ec33d07f5ffa4c2aa2a77e8e793;p=portal%2Fric-dashboard.git diff --git a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java index 2f1d1f69..72fe004e 100644 --- a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java +++ b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/config/SpringContextCache.java @@ -2,7 +2,7 @@ * ========================LICENSE_START================================= * O-RAN-SC * %% - * Copyright (C) 2019 AT&T Intellectual Property and Nokia + * Copyright (C) 2019 AT&T Intellectual Property * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,7 +19,6 @@ */ package org.oransc.ric.portal.dashboard.config; -import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.stereotype.Component; @@ -33,7 +32,7 @@ public class SpringContextCache implements ApplicationContextAware { private static ApplicationContext applicationContext = null; @Override - public void setApplicationContext(final ApplicationContext appContext) throws BeansException { + public void setApplicationContext(final ApplicationContext appContext) { applicationContext = appContext; }