Martin Zdarsky-Jones

Results 14 comments of Martin Zdarsky-Jones

Hi @batya239 we have addressed you feedback into https://github.com/JetBrains/intellij-community/pull/815

@batya239 I don't mind the GUI. As long as I can supply a custom code to transfer the result to excel spreadsheet in my custom class. Ideally, the custom exporter...

@ekudel there are simple merge conflicts now

this line: List filenames = with(files).extract(on(File.class).getName()).sort(on(String.class).toLowerCase()); needs if (files != null)

@netomi the method which need to stay is: public MyPojo getTypedSomething(); not public Object getTypedSomething(); Object is fine as that really hides the generics. All other types fail

Hi @netomi ok, let me take you through the process. We have a class in a library. - that's the jar which will not be obfuscated and needs to stay...

oh, we develop a plugin in java for enterprise level software. Since our code is just a plugin the "library" code loads the obfuscated implementation classes and uses interface methods...

https://plugins.jetbrains.com/docs/marketplace/obfuscate-the-plugin.html

Hi, intellij uses a mix of kotlin and java. The plugin developers declare all the extension points in plugin.xml each extension point has its own xml tag. For example ```...