Manu Sridharan
Manu Sridharan
Update: I created the following `~/.m2/toolchains.xml` file: ```xml jdk 21 /Library/Java/JavaVirtualMachines/zulu-21.jdk/Contents/Home jdk 25 /Library/Java/JavaVirtualMachines/jdk-25.jdk/Contents/Home ``` Here is my JDK 25 version: ``` $ java -version openjdk version "25-ea" 2025-09-16 OpenJDK...
Ok, I figured it out I think. If I also add a Java 17 JDK to the `toolchains.xml` then everything compiles out of the box. Based on [these lines](https://github.com/google/error-prone/blob/dbe6d473d868e402aa0a71097b4c636b65daf09b/.github/workflows/ci.yml#L55-L72) in...
@cushon I wrote up some instructions here: https://github.com/msridhar/error-prone-wiki/commit/607ab1038e84e05f83e76fae6f61117ecd1a2855 It would be cool if we could re-configure the `pom.xml` version constraints with ranges as @commonquail suggested, to allow the output of...
@bupt01 can I ask why you need to use this older version? Maybe we can help you use a recent version instead. Unfortunately building 1.3.4 may be pretty tricky. My...
If you need to run on a JDK 8 JVM, [release 1.5.9](https://github.com/wala/WALA/releases/tag/v1.5.9) was the last to support that. The latest version of WALA should be able to analyze Java 1.8...
Thanks for the report. On this part: > The benefit is that test methods can continue to stay focused on the behavioral aspects instead of having repeated logic that inspects...
I can see things both ways (and this is based only on a limited amount of personal experience). If your whole code base is run under a nullness checker, and...
I can reproduce this one. It's not about default methods, but the fact that the call is to a generic method and we don't handle the instances of `@Nullable T`...
Not eager to add yet another request here, but... 😄 It'd be cool if beyond generated code, there were a way to disable all warning-level checks on all code, i.e.,...
@moaxcp glad you figured this out. Is there a place where you think we could document this such that it would be easier to find?