Mass-migrate to java.util.Optional
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / binding / api / ReadTransaction.java
index c2567dff91cb2a74d9d51a726c2887c3a58cc97d..c7943519e6b17b8ec1ef04b551ae2b5f30132ed1 100644 (file)
@@ -43,7 +43,7 @@ public interface ReadTransaction extends AsyncReadTransaction<InstanceIdentifier
      *         <li>If the data at the supplied path exists, the Future returns an Optional object
      *         containing the data.</li>
      *         <li>If the data at the supplied path does not exist, the Future returns
-     *         Optional#absent().</li>
+     *         Optional.empty().</li>
      *         <li>If the read of the data fails, the Future will fail with a
      *         {@link ReadFailedException} or an exception derived from ReadFailedException.</li>
      *         </ul>