Open micartey opened 1 year ago
When running cfr with the --methodname I get source code as expected but without the imports. Is there an option to show the classes with its package?
--methodname
e.g. Arrays.asList("Hello", "World"); -> java.util.Arrays.Arrays.asList("Hello", "World");
Arrays.asList("Hello", "World");
java.util.Arrays.Arrays.asList("Hello", "World");
When running cfr with the
--methodname
I get source code as expected but without the imports. Is there an option to show the classes with its package?e.g.
Arrays.asList("Hello", "World");
->java.util.Arrays.Arrays.asList("Hello", "World");