Renamed things to fit with namechange of RicSynchronizationTask
[nonrtric.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / DashboardApplication.java
index 2550b8e..7602c06 100644 (file)
@@ -3,6 +3,7 @@
  * O-RAN-SC
  * %%
  * Copyright (C) 2019 AT&T Intellectual Property
+ * Modifications Copyright (C) 2020 Nordix Foundation
  * %%
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -20,7 +21,6 @@
 
 package org.oransc.ric.portal.dashboard;
 
-import java.io.IOException;
 import java.lang.invoke.MethodHandles;
 
 import org.slf4j.Logger;
@@ -36,8 +36,8 @@ public class DashboardApplication {
 
     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
 
-    public static void main(String[] args) throws IOException {
-        SpringApplication.run(DashboardApplication.class, args);
+    public static void main(String[] args) {
+        SpringApplication.run(DashboardApplication.class);
         // Ensure this appears on the console by using level WARN
         logger.warn("main: version '{}' successful start",
             getImplementationVersion(MethodHandles.lookup().lookupClass()));