Pascal
Pascal
Let's say we have the following java types: ```java public abstract class BaseDto { private int id; public int getId() { return id; } } public class UserDto extends BaseDto...
The following model is not handled correctly: ```java public class ModelWithTypeParams { class Child { private T field; public T getField() { return field; } } private Child child1; private...
Currently, the main focus for generated fields in types is the Java field. But consider the following Java class: ```java public class User { private String firstName; private String lastName;...
Fixes #7
Fixes #58 I updated the Backups.proto file from here: https://github.com/signalapp/Signal-Android/blob/c6473ca9e63236af3eae9959a50cfa643d53272e/app/src/main/protowire/Backups.proto I changed it so that the length is decrypted. However, the decryption wasn't straightforward, because the length is not a...
Caddy uses https://github.com/natefinch/lumberjack and some time ago they switched the log file permissions from 0600 to 0644: https://github.com/natefinch/lumberjack/pull/83/files Now, some users (me included) have issues due to these too-restrictive file...
Thanks for the nice project! I noticed that JavaFX uses weird defaults in SVGPath, which do not match the SVG standard. For example, SVG standard says default line cap is...
Fixes #6933
We're trying to use [Azure Key Vault provider for Secrets Store CSI Driver](https://learn.microsoft.com/en-us/azure/aks/csi-secrets-store-identity-access?tabs=azure-portal&pivots=access-with-service-connector#verify-the-connection) in Kubernetes, which basically mounts the TLS certificates from a KeyVault into the filesystem, e.g. as `/etc/tls-certificates/example.com.crt`....
Having `@InjectMocks` targets that extend a superclass with type parameters, fields that use these type parameters are not injected. This is a regression that was introduced in 5.2.0, the following...