mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-01-18 04:34:25 +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.InvocationTargetException;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Enumeration;
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
@ -114,9 +113,7 @@ public class ApplesoftCompiler implements ApplesoftTokens {
|
|||||||
Properties properties = new Properties();
|
Properties properties = new Properties();
|
||||||
try {
|
try {
|
||||||
properties.load(inputStream);
|
properties.load(inputStream);
|
||||||
Enumeration keys = properties.keys();
|
for (String key : properties.stringPropertyNames()) {
|
||||||
while (keys.hasMoreElements()) {
|
|
||||||
String key = (String) keys.nextElement();
|
|
||||||
knownAddresses.put(key, properties.getProperty(key));
|
knownAddresses.put(key, properties.getProperty(key));
|
||||||
}
|
}
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user