mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8030244: Update langtools to use Diamond
Reviewed-by: darcy
This commit is contained in:
parent
6255412f38
commit
6b6b488756
216 changed files with 1006 additions and 1096 deletions
|
@ -44,9 +44,9 @@ import java.util.Set;
|
|||
public class Module implements Comparable<Module> {
|
||||
private String name;
|
||||
private String dirname;
|
||||
private Map<String,Package> packages = new HashMap<String,Package>();
|
||||
private Map<String,Source> sources = new HashMap<String,Source>();
|
||||
private Map<String,File> artifacts = new HashMap<String,File>();
|
||||
private Map<String,Package> packages = new HashMap<>();
|
||||
private Map<String,Source> sources = new HashMap<>();
|
||||
private Map<String,File> artifacts = new HashMap<>();
|
||||
|
||||
public Module(String n, String dn) {
|
||||
name = n;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue