Jump to content

[FEHLER] The field MemoryConfiguration.options is not visible


MikeZeen
 Share

Recommended Posts

Hallo,

Ich bekomme bei Eclipse irgendwie einen Fehler, weiss aber nicht wie er entsteht oder was er bedeutet :S

Fehler lautet :

The field MemoryConfiguration.options is not visible

Und wir mir hier beim wort options angezeigt :

this.getConfig().addDefault("Author", new String[] {"MikeZeen"});	this.getConfig().addDefault("Version", new String[] {"1.0"});	this.getConfig().options.copyDefaults(true);	this.saveConfig();

lG MikeZeen

Link to comment
Share on other sites

Du sprichst bei

this.getConfig().options.copyDefaults(true);
mit dem options die Variable an, die wahrschinlich private ist, d.h. nicht sichtbar.

Wenn du auf options zugreifen willst, musst du auf die Methode(Getter), d.h. options() zugreifen.

Das ganze würde dann so Aussehen:

this.getConfig().options().copyDefaults(true);

Also eig nur Klammern hinter options vergessen :P

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...
B
B