Jens Bannmann
Jens Bannmann
Adding backticks around some XML tags that were not visible.
It would be great to have support for XML. My use case is comparing WSDL files that unfortunately have different attribute ordering (which the XML spec says is irrelevant). In...
Please add support for Dart. [This post](https://aws.amazon.com/blogs/opensource/introducing-a-dart-runtime-for-aws-lambda/) on the AWS Open Source blog seems to cover how.
The example didn't compile due to usage of removed widget APIs. The PR fixes this and also migrates away from deprecated APIs.
- This avoids unchecked warnings at call sites. - See https://docs.oracle.com/javase/specs/jls/se21/html/jls-9.html#jls-9.6.4.7 for details.
Consider the following switch statement: ``` java switch (mode) { case "alfa": return Result.A; case "bravo": return Result.B; case "delta": return Result.D; default: log.warn("Ignoring unknown mode indicator '{}'", mode); break;...
Thank you for taking the time to work on a PR for Awesome-Sysadmin! To ensure your PR is dealt with swiftly please check the following: - [x] Your additions are...
NullAway: 0.12.9 and earlier Java: 21.0.8_12 With the reproducer source file below, NullAway reports the following warnings: 1. `[28,40] [NullAway] passing @Nullable parameter 'a' where @NonNull is required (see http://t.uber.com/nullaway...
**Is your feature request related to a problem? Please describe.** Writing the serde data to simulate input that involves the Windows key is non-obvious and harder than it should be....
Referencing an exception class in the `catch` clause of a try-catch block can certainly be considered a dependency on that class, similar to a `throws` clause or an `instanceof` check:...