Need debugging help.
I got slammed for posting my whole code earlier. So in that case, i will post just 2 errors, and the 2 parts of the code that the errors point to. I would post the whole code but (1. I dont want to get slammed again 2. Its very long (12.3k lines) 3. All of the errors pretty much say illegal start of expression, so posting a couple of errors might help...)
c:\Tormented Realm\Houlascape client\Houlascape client\client.java:5071: illegal start of expression
if(true)goto _L2;elsegoto _L1
^
c:\Tormented Realm\Houlascape client\Houlascape client\client.java:5071: illegal start of expression
if(true)goto _L2;elsegoto _L1
^
CORRESPONDING CODE TO THE ABOVE =
{
if(true)goto _L2;elsegoto _L1
_L1:
}
--
ERRORS 2=
c:\Tormented Realm\Houlascape client\Houlascape client\client.java:4763: not a statement
aString1212;
^
c:\Tormented Realm\Houlascape client\Houlascape client\client.java:4765: not a statement
(char)j;
^
CORRESPONDING CODE:
this;
JVM INSTR dup_x1 ;
aString881;
append();
(char)j;
append();
toString();
aString881;
continue;/* Loop/switch isn't completed */
if(!aBoolean1256)
break MISSING_BLOCK_LABEL_604;
if(j < 32 || j > 122 || aString1212.length() >= 80)
break MISSING_BLOCK_LABEL_222;
new StringBuilder();
this;
JVM INSTR dup_x1 ;
aString1212;
append();
(char)j;
append();
toString();
aString1212;
aBoolean1223 =true;
if(j == 8 && aString1212.length() > 0)
-
I know its pretty unclear, but if i posted the whole code somebody might yell at me again. I receive 100 errors when compiling this program.

