Mass-migrate to java.util.Optional
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / impl / LeafNodeCodecContext.java
index 3df83dd09e9e162d831e43b1dbfd6744198e0900..a72145217f89b0ab6cbd9c9eed697d3c936fc047 100644 (file)
@@ -7,13 +7,13 @@
  */
 package org.opendaylight.mdsal.binding.dom.codec.impl;
 
-import com.google.common.base.Optional;
 import com.google.common.base.Preconditions;
 import com.google.common.collect.ImmutableCollection;
 import java.lang.reflect.Method;
 import java.util.ArrayList;
 import java.util.Collection;
 import java.util.List;
+import java.util.Optional;
 import java.util.Set;
 import javax.annotation.Nullable;
 import org.opendaylight.mdsal.binding.dom.codec.api.BindingCodecTreeNode;
@@ -236,4 +236,4 @@ final class LeafNodeCodecContext<D extends DataObject> extends NodeCodecContext<
     @Nullable Object defaultObject() {
         return defaultObject;
     }
-}
\ No newline at end of file
+}