mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
dataflow to/from containers support
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import java.util.*;
|
||||
|
||||
class Map5 {
|
||||
void f(String s, Map<String, String> m) {
|
||||
m.put("x", s);
|
||||
Set<String> keys = m.keySet();
|
||||
String[] keyArray = keys.toArray(new String[0]);
|
||||
String <caret>v = keyArray[0];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user