Jan Luehe

Results 15 comments of Jan Luehe

I was able to work around this warning by launching jmxterm with the "--add-exports jdk.jconsole/sun.tools.jconsole=ALL-UNNAMED" directive. I don't believe a proper "supported" replacement for the affected API exists yet.

@bjhargrave, we need this capability, too! Would you accept a PR which adds this feature, that is, omits any signature files from a mutated artifact, such that the artifact would...

Thank you, @bjhargrave - will do! Opened https://github.com/eclipse/transformer/issues/606

@bjhargrave, I have the changes ready (including unit tests) and should be able to raise PR soon - just FYI

Thank you, @jansupol! That sounds like an interesting idea! Let me play with it and see if I can get it to work!

@jansupol, I was able to pinpoint where the whitespace gets stripped in Jersey 2: - Jersey 1.x: ``` package com.sun.jersey.core.impl.provider.header; public class MediaTypeProvider implements HeaderDelegateProvider { @Override public String toString(MediaType...

@jansupol, can you tell me how I can replace/override Jersey's MediaTypeProvider with my own? I see Jersey's `RuntimeDelegateImpl` getting initialized as follows: ``` package org.glassfish.jersey.server.internal; public RuntimeDelegateImpl() { super(new MessagingBinders.HeaderDelegateProviders().getHeaderDelegateProviders());...

@jansupol, what I ended up doing is extend `org.glassfish.jersey.server.internal.RuntimeDelegateImpl` and have my subclass (declared in `META-INF/services/javax.ws.rs.ext.RuntimeDelegate`) override `createHeaderDelegate` ...

@bjhargrave, please let me know if the proposed changes look good to you now, or if you have any further comments, which I will be happy to address. Thank you!

@bjhargrave, thank you for your meaningful code-review comments: they are very much appreciated! Third time's a charm :)