l2jkain Posted January 3, 2018 Posted January 3, 2018 I would like to know if I would change anything by >> if (st.getInt("cond") < 6) { st.set("cond", "6"); } being thus if (st.getInt("cond") < 6) st.set("cond", "6");
0 Tryskell Posted January 4, 2018 Posted January 4, 2018 The "{ }" allows you to add more commands on a if block. If you got a one liner condition result, it's shorter to write it without it (which is the common writting style when I code something).
Question
l2jkain
I would like to know if I would change anything by
>>
if (st.getInt("cond") < 6)
{
st.set("cond", "6");
}
being thus
if (st.getInt("cond") < 6)
st.set("cond", "6");
3 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now