commodis

Results 23 comments of commodis

the problem is, that the latest release is 1.4.2 and the logging is using `info` https://github.com/JavaMoney/jsr354-ri/blob/1.4.2/moneta-core/src/main/java/org/javamoney/moneta/FastMoney.java#L663-L666

> It seem that this logging has been introduced with version 1.4 and now produces a lot of spam in the logs. Any suggestion how it can be suppressed or...

You are correct. The question is, why would I need to do that in the first place within a single API? I guess it is the same reasoning for classes...

My usecase was to proxy the query parameters from my current location to a different target where I had to modify a single parameter like for example https://current.github.com?a=1&b=2 to https://**after**.github.com?a=1&b=**3**...

The `MultivaluedMap` is immutable which disallows operations like `put` but yes, basically I am doing this. I am not telling that this is impossible and no workaround exists. It is...

Leaving my special usecase aside it is just about the required conversion needed from `List uriBuilder.queryParam( name, value.toArray() ) );` feels unnecessary.

In my opinion, an API should have a consistent layout so people using that API are not re-inventing the wheel each and every time. JDK 16 added `Stream.toList()` even though...

An `enum` would not be extensible. If this is implemented as an `enum` then the only business requirement I have is to add the `SUCCESS`. It seems MyFaces has already...

I just read through the source code and noticed a potential path: 1. https://github.com/htmlhint/HTMLHint/blob/a5816446571c2e6d2e3ccc231700a76938304f04/src/cli/htmlhint.ts#L462 is where the filepath is parsed and passed to verification system. 2. https://github.com/htmlhint/HTMLHint/blob/a5816446571c2e6d2e3ccc231700a76938304f04/src/core/htmlparser.ts#L81 adding this to...

Would it be useful to extend this check for `static` variables? Private constants suffer from the same problem. I could open a new issue in case it should be handled...