please help been working on a project got it down to 5 errors from 100 now i have no idea what to do.
Actual file is attached. [Edited by Admin]
Code:
Errors:
init:
deps-jar:
Created dir: C:\Users\Tommy\Desktop\build\classes
Compiling 306 source files to C:\Users\Tommy\Desktop\build\classes
C:\Users\Tommy\Desktop\PlasmaMS PET\SeanSource V.5.7\src\net\sf\odinms\provider\xmlwz\FileStoredPngMapleCanvas.java:14: warning: com.sun.imageio.plugins.png.PNGImageReaderSpi is Sun proprietary API and may be removed in a future release
import com.sun.imageio.plugins.png.PNGImageReaderSpi;
C:\Users\Tommy\Desktop\PlasmaMS PET\SeanSource V.5.7\src\net\sf\odinms\client\MapleCharacter.java:429: cannot find symbol
symbol : method getName()
location: class java.lang.Object
ps.setString(1, GetPet().getName()); // Set name
^
C:\Users\Tommy\Desktop\PlasmaMS PET\SeanSource V.5.7\src\net\sf\odinms\client\MapleCharacter.java:430: cannot find symbol
symbol : method getLevel()
location: class java.lang.Object
ps.setInt(2, GetPet().getLevel()); // Set Level
^
C:\Users\Tommy\Desktop\PlasmaMS PET\SeanSource V.5.7\src\net\sf\odinms\client\MapleCharacter.java:431: cannot find symbol
symbol : method getCloseness()
location: class java.lang.Object
ps.setInt(3, GetPet().getCloseness()); // Set Closeness
^
C:\Users\Tommy\Desktop\PlasmaMS PET\SeanSource V.5.7\src\net\sf\odinms\client\MapleCharacter.java:432: cannot find symbol
symbol : method getFullness()
location: class java.lang.Object
ps.setInt(4, GetPet().getFullness()); // Set Fullness
^
C:\Users\Tommy\Desktop\PlasmaMS PET\SeanSource V.5.7\src\net\sf\odinms\client\MapleCharacter.java:433: cannot find symbol
symbol : method getUniqueId()
location: class java.lang.Object
ps.setInt(5, GetPet().getUniqueId()); // Set ID
^
C:\Users\Tommy\Desktop\PlasmaMS PET\SeanSource V.5.7\src\net\sf\odinms\provider\xmlwz\FileStoredPngMapleCanvas.java:47: warning: com.sun.imageio.plugins.png.PNGImageReaderSpi is Sun proprietary API and may be removed in a future release
ImageReaderSpi readerSpi = iioRegistry.getServiceProviderByClass(PNGImageReaderSpi.class);
^
5 errors
2 warnings
BUILD FAILED (total time: 2 seconds)
Comment