summaryrefslogtreecommitdiff
path: root/Tools/Source/MigrationTools
diff options
context:
space:
mode:
authoralfred <alfred@6f19259b-4bc3-4df7-8a09-765794883524>2006-08-23 09:13:41 +0000
committeralfred <alfred@6f19259b-4bc3-4df7-8a09-765794883524>2006-08-23 09:13:41 +0000
commit1eac75f911034feed279a69fbe6b84853682dca3 (patch)
tree64186fd4fd80bd83d6931924ce756e1a1aa86e29 /Tools/Source/MigrationTools
parentac62aa9ad84cd1883967ca9026ac95378507cf95 (diff)
downloadedk2-1eac75f911034feed279a69fbe6b84853682dca3.zip
edk2-1eac75f911034feed279a69fbe6b84853682dca3.tar.gz
edk2-1eac75f911034feed279a69fbe6b84853682dca3.tar.bz2
final
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1362 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source/MigrationTools')
-rw-r--r--Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java b/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java
index 3e4c4cb..49dde8b 100644
--- a/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java
+++ b/Tools/Source/MigrationTools/org/tianocore/migration/ModuleInfo.java
@@ -19,7 +19,7 @@ import java.util.*;
Class ModuleInfo is built for scanning the source files, it contains all the needed
information and all the temporary data.
*/
-public class ModuleInfo {
+public final class ModuleInfo {
ModuleInfo(String modulepath) throws Exception {
this.modulepath = modulepath;
@@ -43,21 +43,21 @@ public class ModuleInfo {
public String moduletype = null;
public String entrypoint = null;
- public Set<String> localmodulesources = new HashSet<String>(); //contains both .c and .h
- public Set<String> preprocessedccodes = new HashSet<String>();
- public Set<String> msaorinf = new HashSet<String>(); //only a little, hash may be too big for this
+ public final Set<String> localmodulesources = new HashSet<String>(); //contains both .c and .h
+ public final Set<String> preprocessedccodes = new HashSet<String>();
+ public final Set<String> msaorinf = new HashSet<String>(); //only a little, hash may be too big for this
- public Set<String> hashfuncc = new HashSet<String>();
- public Set<String> hashfuncd = new HashSet<String>();
- public Set<String> hashnonlocalfunc = new HashSet<String>();
- public Set<String> hashnonlocalmacro = new HashSet<String>();
- public Set<String> hashEFIcall = new HashSet<String>();
- public Set<String> hashr8only = new HashSet<String>();
+ public final Set<String> hashfuncc = new HashSet<String>();
+ public final Set<String> hashfuncd = new HashSet<String>();
+ public final Set<String> hashnonlocalfunc = new HashSet<String>();
+ public final Set<String> hashnonlocalmacro = new HashSet<String>();
+ public final Set<String> hashEFIcall = new HashSet<String>();
+ public final Set<String> hashr8only = new HashSet<String>();
- public Set<String> hashrequiredr9libs = new HashSet<String>(); // hashrequiredr9libs is now all added in SourceFileReplacer
- public Set<String> guid = new HashSet<String>();
- public Set<String> protocol = new HashSet<String>();
- public Set<String> ppi = new HashSet<String>();
+ public final Set<String> hashrequiredr9libs = new HashSet<String>(); // hashrequiredr9libs is now all added in SourceFileReplacer
+ public final Set<String> guid = new HashSet<String>();
+ public final Set<String> protocol = new HashSet<String>();
+ public final Set<String> ppi = new HashSet<String>();
public final void enroll(String filepath) throws Exception {
String[] temp;