Hi,
I am using jd-gui to decompile a class file, and I got a break label (label1076) as below. In eclipse I got an error compiling because the label is declared after it is used. What is the equivalent java code without using break statement?
public List buildChildList()
{
for (int i = 0; i < size; ++i)
{
... for (int i = 0; i < relatedWorkExpressions.size(); ++i) {
...
try
{
...
}
catch (Exception ex)
{
... break label1076: }
...
...
...
label1076: childList[childPosition.intValue()] = child;
}
}
... }