We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Reimplement our `compare` methods in terms of JDK equivalents. And migrate our own calls off our methods. Guava has required Java 8 for a while now. Note also that the APIs in question are available even under Android [even without opt-in library desugaring](https://r8.googlesource.com/r8/+/refs/heads/main/src/main/java/com/android/tools/r8/ir/desugar/BackportedMethodRewriter.java). Further notes: - I did not touch `UnsignedInteger`, `UnsignedInts`, `UnsignedLong`, or `UnsignedLongs` because the JDK equivalents aren't available under GWT or J2CL. - I did not touch `UnsignedBytes.compare` because `Bytes.compareUnsigned`, while available under any version of Android, is not available on the JVM until Java 9. - I did touch an _assertion_ about `UnsignedBytes.compare` because I noticed that it had its actual and expected values reversed. RELNOTES=n/a PiperOrigin-RevId: 655152611
Begin tweaking Guava sources to satisfy Copybara. - Change from http to https (and from github.io links to guava.dev/truth.dev while I'm at it). - Remove go/ links. - Add whitespace around MOE directives. - Put MOE stripping directives alone in comments, moving other comment text to a separate comment. - One particular case of that: Put MOE intracomment stripping into HTML comments... even when it happens in non-Javadoc comments (i.e., /* */). It seems that Copybara wants for intracomment directives to stand alone in *some* kind of comment? - Add @GoogleInternal to some files that are currently omitted from Guava simply by not being in MOE filegroup targets. This is surely not a complete set of changes, but it's enough to get me started. RELNOTES=n/a ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=334840448
Fix links to Guava Javadoc in wiki files to use Java 8+ Javadoc URL format. $ cat files | xargs sed -i -re ':a; s#(: https?://google\.github\.io/guava/releases/[^/]+/api/docs/.+/[^/]+\.html\#.+)(\(|%28|\)|%29|, |,%20|,)(.*)#\1-\3#g; ta' ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=175553572
Fix md files that were incorrectly marked executable.
Sync changes from migration to internal pages. Primarily, fix up tons of Markdown stuff.
Update all or most Javadoc links to use new GitHub locations
Fix wiki links to use proper format to work on GitHub.
Initial commit of Guava wiki contents.