Cleanup warnings
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / md / cluster / datastore / model / SchemaContextHelper.java
index 4e906a4d157850b54e42cafeb2f5d181a3fda9bc..ceee437ac3d148623ef84022771fe6d5eff3260b 100644 (file)
@@ -8,7 +8,6 @@
 
 package org.opendaylight.controller.md.cluster.datastore.model;
 
-import com.google.common.base.Throwables;
 import java.io.File;
 import java.io.FileInputStream;
 import java.io.FileNotFoundException;
@@ -65,7 +64,7 @@ public class SchemaContextHelper {
         try {
             return YangParserTestUtils.parseYangSources(new File("src/main/yang/entity-owners.yang"));
         } catch (IOException | ReactorException e) {
-            throw Throwables.propagate(e);
+            throw new RuntimeException(e);
         }
     }
 }