mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
Added braces
Lack of braces on multi-line statements is considered very scary in Java.
This commit is contained in:
parent
ccd88a63a5
commit
c435bc379b
8 changed files with 84 additions and 68 deletions
|
@ -57,10 +57,11 @@ public final class Global
|
|||
public static String getParameter(String id)
|
||||
{
|
||||
Native.StringPtr res = new Native.StringPtr();
|
||||
if (!Native.globalParamGet(id, res))
|
||||
if (!Native.globalParamGet(id, res)) {
|
||||
return null;
|
||||
else
|
||||
} else {
|
||||
return res.value;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue