I'm using TextPad to run a simple Java program, and I keep getting an out of memory error.
Some digging on the internet tells me that I need to increase the heap size, and that the best way to do this seems to be with a flag. However, I can't find anything on how to implement flags in TextPad, or at least, any that seem to work for my program.
Here's the code I'm using:
import java.io.File;
import core.SaveData;
import core.obj.Player;
import core.files.PlayerFile;
import core.files.PlayerAttribute;
public class PositioningFix {
**Rest of the program**
Any help would be very much appreciated, even if it's just telling me to ditch TextPad and go with a different editor!