Stephan Schroevers

Results 104 comments of Stephan Schroevers

> If not: the code I'm working on is scheduled to be open-sourced in ~three weeks, so once that happens I can just add a link here. It's been more...

From [the documentation](https://checkerframework.org/manual/#nullness-checker): > The most important annotations supported by the Nullness Checker are `@NonNull` and `@Nullable`. **`@NonNull` is rarely written, because it is the default.**

@lazaroclapp, I can't seem to fine more information about this "RxChecker" online. Its name makes it sound like an Error Prone plugin for reactive (anti-)patterns. If it is: is this...

> But this could lead to a bunch of new error messages on existing code, so we'd need to think it over more. Running [`EqualsMissingNullable`](https://errorprone.info/bugpattern/EqualsMissingNullable) over the Uber code base...

The branch currently has conflicts. - @bryanschofield do you think you can resolve them? - Any feedback from the Google team on whether this change is viable would be appreciated....

@eaftan the described issue is amplified as the number of commented-out sections increases. Reproduction using the linked [`OdfManifestSaxHandler`](http://svn.apache.org/repos/asf/incubator/odf/trunk/odfdom/src/main/java/org/odftoolkit/odfdom/pkg/OdfManifestSaxHandler.java): ``` $ java -jar google-java-format-1.7-all-deps.jar OdfManifestSaxHandler.java OdfManifestSaxHandler.java: error: Java heap space java.lang.OutOfMemoryError:...

@lindell admitted I didn't deeply think about this yet, but a first version could implement an algorithm such a the following, given a `$CACHE_ROOT` directory (I'm assuming Github terminology): -...

Indeed, we have a number of large repos that would benefit from this. (Currently we have a repository containing all our other repositories as submodules, with various operations performed using...

Two-cents drive-by comment: generally more specific settings should override more general settings. System properties are more specific than environment variables, since the former are per-JVM, while an environment can contain...