You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Semi-colon at end of 2’nd if statement creates an empty statement block so the return statement is always executed.
if (max2>=limit && !IJ.is64Bit()) {
if (!IJ.showMessageWithCancel(title,
"Note: setting the memory limit to a value\n"
+"greater than "+limit+"MB on a 32-bit system\n"
+"may cause ImageJ to fail to start. The title of\n"
+"the Edit>Options>Memory & Threads dialog\n"
+"box changes to \"Memory (64-bit)\" when ImageJ\n"
+"is running on a 64-bit version of Java."));
return;
}
I think semi-colon should be removed:
+"is running on a 64-bit version of Java."))
return;
Semi-colon at end of 2’nd if statement creates an empty statement block so the return statement is always executed.
I think semi-colon should be removed:
==================================
Here also I think semi-colon should be removed:
should be :
The text was updated successfully, but these errors were encountered: