Mass-migrate to java.util.Optional
[mdsal.git] / dom / mdsal-dom-spi / src / main / java / org / opendaylight / mdsal / dom / spi / store / DOMStoreReadTransaction.java
index 404ed1faa13cd4d9b0dc93626fa8ebad58122ff2..0b22cef46e1525cee889661a128ad288462bcf58 100644 (file)
@@ -27,7 +27,7 @@ public interface DOMStoreReadTransaction extends DOMStoreTransaction {
      *         <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>