W1016 Unmatched or Extra Brackets
[Previous]  [Next] 
|
User Manual [Previous]  [Next] W1016 Unmatched or Extra BracketsUmple semantic warning issued when a extra bracket is addedWhen either a extra curly or extra round bracket is found. A warning will be raised. Example//The warning is generated as the code // has a extra bracket on top (Could be open or close) { class A { attr; attr2; } Load the above code into UmpleOnline Another Example//The warning is generated as the code // has a extra bracket on top (Could be open or close) ( class A { attr; attr2; } Load the above code into UmpleOnline Solution to The Above So the Message No Longer Appears//Remove the extra bracket //Removes the warning class A { attr; attr2; } Load the above code into UmpleOnline |