SteamWar/SpigotCore
Archiviert
13
0

Update SWCommand.OptionalValue
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
yoyosource 2021-12-09 15:26:31 +01:00
Ursprung b5f9284bb5
Commit 2bac163e57

Datei anzeigen

@ -361,6 +361,9 @@ public abstract class SWCommand {
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER})
protected @interface OptionalValue {
String defaultValue(); // Will pe parsed against the TypeMapper specified by the parameter or annotation
/**
* Will pe parsed against the TypeMapper specified by the parameter or annotation.
*/
String value();
}
}