mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-30 16:29:40 +00:00
Unused code. #36
This commit is contained in:
parent
668547ad25
commit
f8eef28cf6
@ -24,7 +24,6 @@ import java.io.InputStream;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Enumeration;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@ -114,9 +113,7 @@ public class ApplesoftCompiler implements ApplesoftTokens {
|
||||
Properties properties = new Properties();
|
||||
try {
|
||||
properties.load(inputStream);
|
||||
Enumeration keys = properties.keys();
|
||||
while (keys.hasMoreElements()) {
|
||||
String key = (String) keys.nextElement();
|
||||
for (String key : properties.stringPropertyNames()) {
|
||||
knownAddresses.put(key, properties.getProperty(key));
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
|
Loading…
Reference in New Issue
Block a user