Remove prefix shard leftovers
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / modification / DeleteModificationTest.java
index 676bce90f472d6106e9f65d74162620f73e2ebcd..c483d4d411f45b154dc20b159990703ce0186bd0 100644 (file)
@@ -10,7 +10,7 @@ package org.opendaylight.controller.cluster.datastore.modification;
 
 import static org.junit.Assert.assertEquals;
 
-import com.google.common.base.Optional;
+import java.util.Optional;
 import org.apache.commons.lang.SerializationUtils;
 import org.junit.Assert;
 import org.junit.Test;
@@ -33,7 +33,7 @@ public class DeleteModificationTest extends AbstractModificationTest {
         commitTransaction(writeTransaction);
 
         // Check if it's in the datastore
-        Optional<NormalizedNode<?, ?>> data = readData(TestModel.TEST_PATH);
+        Optional<NormalizedNode> data = readData(TestModel.TEST_PATH);
         Assert.assertTrue(data.isPresent());
 
         // Delete stuff from the datastore