aboutsummaryrefslogtreecommitdiff
path: root/jimfs/src/main/java/com/google/common/jimfs/JimfsPath.java
AgeCommit message (Collapse)Author
2019-10-04Mostly migrate off jsr305.cpovirk
- Mostly migrate to Checker Framework declaration annotations. - Migrate @GuardedBy to a custom annotation for now. (We would migrate to Error Prone's, but that's causing me problems as I experiment with JPMS.) Compare to b/69411537 for Guava. I've left @ParametersAreNonnullByDefault in place for now, but we'd need to remove it to fully eliminate the jsr305 dep. RELNOTES=Migrated from jsr305 `@Nullable` to Checker Framework `@NullableDecl`. In addition to the new dependency on the Checker Framework annotations, we keep the dependency on jsr305 for now so that we can keep using `@ParametersAreNonNullByDefault`. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=272713254
2019-04-29Run google-java-format over all of JimFS.kak
RELNOTES=Run google-java-format over all of JimFS. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=244231542
2017-06-05Fix comparison in JimfsPath that will always return false (as ArrayDeque is notdiamondm
a List) to simply compare the collections' elements. Eclipse caught this issue, warning "Unlikely argument type for equals(): ImmutableList<Name> seems to be unrelated to Deque<Name>". Also applied two ErrorProne fixes to "Use grouping parenthesis to make the operator precedence explicit". ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=157605901
2015-06-03Format Jimfs with google-java-format.cgdecker
Made a bunch of manual fixes, but mostly pretty good. ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=94692335
2015-02-25Change usages of deprecated Objects methods to MoreObjects.cgdecker
Also change usages of base.Objects methods to java.util.Objects where possible. ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=87182713
2014-06-10Move all classes to com.google.common.jimfs.Colin Decker
------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=68905401