diff options
| author | 2015-03-09 12:53:11 -0400 | |
|---|---|---|
| committer | 2015-03-09 12:53:11 -0400 | |
| commit | d6b2a223a7973941e5e4fb45c8ceec4885891496 (patch) | |
| tree | 5728ab513d0b4ed85a720da7eb48c6591dd3f8b0 /src/cuchaz/enigma/convert/ClassMatches.java | |
| parent | add tracking for mismatched fields/methods (diff) | |
| download | enigma-fork-d6b2a223a7973941e5e4fb45c8ceec4885891496.tar.gz enigma-fork-d6b2a223a7973941e5e4fb45c8ceec4885891496.tar.xz enigma-fork-d6b2a223a7973941e5e4fb45c8ceec4885891496.zip | |
starting on field matching gui
Diffstat (limited to '')
| -rw-r--r-- | src/cuchaz/enigma/convert/ClassMatches.java (renamed from src/cuchaz/enigma/convert/Matches.java) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cuchaz/enigma/convert/Matches.java b/src/cuchaz/enigma/convert/ClassMatches.java index 19bb155..f8b2afd 100644 --- a/src/cuchaz/enigma/convert/Matches.java +++ b/src/cuchaz/enigma/convert/ClassMatches.java | |||
| @@ -14,7 +14,7 @@ import com.google.common.collect.Sets; | |||
| 14 | import cuchaz.enigma.mapping.ClassEntry; | 14 | import cuchaz.enigma.mapping.ClassEntry; |
| 15 | 15 | ||
| 16 | 16 | ||
| 17 | public class Matches implements Iterable<ClassMatch> { | 17 | public class ClassMatches implements Iterable<ClassMatch> { |
| 18 | 18 | ||
| 19 | Collection<ClassMatch> m_matches; | 19 | Collection<ClassMatch> m_matches; |
| 20 | Map<ClassEntry,ClassMatch> m_matchesBySource; | 20 | Map<ClassEntry,ClassMatch> m_matchesBySource; |
| @@ -25,11 +25,11 @@ public class Matches implements Iterable<ClassMatch> { | |||
| 25 | Set<ClassEntry> m_unmatchedSourceClasses; | 25 | Set<ClassEntry> m_unmatchedSourceClasses; |
| 26 | Set<ClassEntry> m_unmatchedDestClasses; | 26 | Set<ClassEntry> m_unmatchedDestClasses; |
| 27 | 27 | ||
| 28 | public Matches() { | 28 | public ClassMatches() { |
| 29 | this(new ArrayList<ClassMatch>()); | 29 | this(new ArrayList<ClassMatch>()); |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | public Matches(Collection<ClassMatch> matches) { | 32 | public ClassMatches(Collection<ClassMatch> matches) { |
| 33 | m_matches = matches; | 33 | m_matches = matches; |
| 34 | m_matchesBySource = Maps.newHashMap(); | 34 | m_matchesBySource = Maps.newHashMap(); |
| 35 | m_matchesByDest = Maps.newHashMap(); | 35 | m_matchesByDest = Maps.newHashMap(); |