mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-25 18:26:25 +00:00
#1240 JPEXS does not use multiple threads for decompilation on Text Search: AS2 is also multi thread now, work status improvements during search
This commit is contained in:
@@ -360,6 +360,7 @@ public class AdvancedSettingsDialog extends AppDialog {
|
||||
String locName = locNames.get(name);
|
||||
|
||||
try {
|
||||
field.setAccessible(true);
|
||||
ConfigurationItem item = (ConfigurationItem) field.get(null);
|
||||
|
||||
ParameterizedType listType = (ParameterizedType) field.getGenericType();
|
||||
@@ -580,6 +581,7 @@ public class AdvancedSettingsDialog extends AppDialog {
|
||||
Field field = fields.get(name);
|
||||
ConfigurationItem item = null;
|
||||
try {
|
||||
field.setAccessible(true);
|
||||
item = (ConfigurationItem) field.get(null);
|
||||
} catch (IllegalArgumentException | IllegalAccessException ex) {
|
||||
// Reflection exceptions. This should never happen
|
||||
|
||||
Reference in New Issue
Block a user