File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ void java_bytecode_languaget::get_language_options(const cmdlinet &cmd)
48
48
string_refinement_enabled=cmd.isset (" refine-strings" );
49
49
throw_runtime_exceptions=cmd.isset (" java-throw-runtime-exceptions" );
50
50
assert_uncaught_exceptions = !cmd.isset (" no-uncaught-exception-check" );
51
- if (cmd.isset (" java-max-input-array-length" ))
51
+ threading_support = cmd.isset (" java-threading" );
52
+
53
+ if (cmd.isset (" java-max-input-array-length" ))
52
54
object_factory_parameters.max_nondet_array_length =
53
55
std::stoi (cmd.get_value (" java-max-input-array-length" ));
54
56
if (cmd.isset (" java-max-input-tree-depth" ))
@@ -70,11 +72,6 @@ void java_bytecode_languaget::get_language_options(const cmdlinet &cmd)
70
72
lazy_methods_mode=LAZY_METHODS_MODE_CONTEXT_INSENSITIVE;
71
73
else
72
74
lazy_methods_mode=LAZY_METHODS_MODE_EAGER;
73
-
74
- if (cmd.isset (" java-threading" ))
75
- threading_support = true ;
76
- else
77
- threading_support = false ;
78
75
79
76
if (throw_runtime_exceptions)
80
77
{
You can’t perform that action at this time.
0 commit comments