Gili Tzabari

Results 531 comments of Gili Tzabari

@adangel I am getting the same false-positive on a non-JDK class. In my case, I am getting `[INFO] PMD Failure: com.github.cowwoc.lumina.Resource:513 Rule:UnusedPrivateMethod Priority:3 Avoid unused private methods such as 'containsLink(ObjectNode)'..`...

Hey @karllessard I would appreciate you taking this over. Thank you.

I am seeing the same issue. My guess is that this has something to do with the use of Powershell on the Windows machines. I filed https://issues.apache.org/jira/browse/MGPG-136 We need one...

Also note that Powershell has long-standing bugs regarding expanding environment variables: https://stackoverflow.com/a/68758940/14731 It doesn't sound like these will get fixed anytime soon. Can one of the `setup-java` committers please double-check...

As a workaround, I configured my build script to copy all `.mts` files into a temporary directory, rename their extension to `.ts` and run `better-docs` against the temporary directory. This...

@wojtek-krysiak Is there a possibility of building on top of https://github.com/microsoft/tsdoc or https://typedoc.org/ instead of building your own parser? Your output is much nicer than theirs, but maybe their parser...

https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html states `Declaring generic classes or types is unsupported.` I propose using the Javadoc syntax `@param description`.

@joschi I just tried upgrading and ran into a lot of problems (conflicting transitive dependencies, classloader issues, etc). I don't think the Dropwizard dependencies are fully caught up yet.

Here is an implementation that we wrote that worked for us: ``` @Provider @Singleton public class LocalDateTimeConverter implements ParamConverterProvider { @Override public ParamConverter getConverter(Class rawType, Type genericType, Annotation[] annotations) {...

The ideal approach would be to add `module-info.java`. Baring that, we should at least add `Automatic-Module-Name` to the manifest file.