Created
June 12, 2014 18:52
-
-
Save mikea/4c053e72a60d6f187cb6 to your computer and use it in GitHub Desktop.
Put cursor on ints in Arrays.asList expression and invoke Analyze Dataflow To Here
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Test { | |
private static void foo(String value, int...ints) { | |
System.out.println(value + " " + Arrays.asList(ints)); | |
} | |
private static void bar(String value, int...ints) { | |
foo(value, ints); | |
} | |
private static void baz(String value) { | |
bar(value, 2, 3, 4); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment