<div dir="ltr">The problem here is pretty simple. If someone googles Javadocs for a class or method, they will end up on a page pointing to a specific version.<br><br><a href="https://docs.oracle.com/en/java/javase/18/docs/api/java.base/java/util/concurrent/atomic/AtomicReference.html">https://docs.oracle.com/en/java/javase/18/docs/api/java.base/java/util/concurrent/atomic/AtomicReference.html</a><br><br>Now that releases are way more frequent, there isn't much time for any particular version to gather SEO traffic.<br><br>As such, the links that show up in search results for any particular class are often for Java 8.<br><br><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicReference.html">https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicReference.html</a><br><br>No matter what it will take quite a while for this to change, but part of the solution the rust community adopted for crates was to make a "/latest" link. There are more steps to this I'm sure and it's not a comprehensive strategy, but it seems like a good first step.<br><br><a href="https://github.com/rust-lang/docs.rs/issues/1438">https://github.com/rust-lang/docs.rs/issues/1438</a><br><br>So in this case<br><br><a href="https://docs.oracle.com/en/java/javase/latest/docs/api/java.base/java/util/concurrent/atomic/AtomicReference.html">https://docs.oracle.com/en/java/javase/latest/docs/api/java.base/java/util/concurrent/atomic/AtomicReference.html</a><br><br></div>