Most Simple Retarded Bug ever. . . .

Discussion in 'Plugin Development' started by Slipswhitley, Dec 25, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    Slipswhitley

    For some retarded reason this doesn't work. Anyone explain ?
    Code:
    package me.convert;
     
    import org.bukkit.plugin.java.JavaPlugin;
     
    public class Main extends JavaPlugin {
     
        public void onEnable() {
            saveDefaultConfig();
            System.out.println(getConfig().getString("piss"));
        }
     
     
    }

    Config is correct and all that no idea why the fuck this won't work Extreamly frustrating

    Fixed It.

    Problem with compiler.

    Ugh i hate this fucking compiler

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 30, 2016
  2. Offline

    MP5K

    Hello Slipswhitley,
    Missing @Override Annotation.
    PHP:
    @Override
    public void onEnable() {
            
    saveDefaultConfig();
            
    System.out.println(getConfig().getString("piss"));
    }
     
  3. Offline

    Slipswhitley

    No
    Nope didn;t fix it
     
  4. Offline

    Woobie

    Not needed.
     
  5. Offline

    MP5K

    Really?
     
  6. Offline

    Slipswhitley

    This is just stupid it makes no sence why its doing this
     
  7. Offline

    Woobie

    Nope, I never use @Override annotation, unless I want to override a command.
     
  8. Offline

    Slipswhitley

    I think I JDK or something has become corrupt Ill try reinstalling.
     
  9. Offline

    Woobie

    Slipswhitley
    So what is the problem? Console error? Eclipse error?
     
  10. Offline

    Slipswhitley

    No idea yet. It worked for a second but started on my next compiled version.
     
  11. Offline

    A5H73Y

    Use Eclipse classic to compile? Never had a problem using it
     
Thread Status:
Not open for further replies.

Share This Page