Mass-migrate to java.util.Optional
[mdsal.git] / dom / mdsal-dom-api / src / main / java / org / opendaylight / mdsal / dom / api / DOMDataTreeReadTransaction.java
index 736a88d57dd36439c8ccff3bbe9371aeef6d9459..e4bb89598fad15b5bbeaa041e007836dfa65d3a9 100644 (file)
@@ -41,7 +41,7 @@ public interface DOMDataTreeReadTransaction extends AsyncReadTransaction<YangIns
      *         <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>