@@ -62,16 +62,6 @@ public IntegerProperty agreementVersionProperty() {
6262 return agreementVersion ;
6363 }
6464
65- /// Returns the accepted launcher agreement version.
66- public int getAgreementVersion () {
67- return agreementVersion .get ();
68- }
69-
70- /// Sets the accepted launcher agreement version.
71- public void setAgreementVersion (int agreementVersion ) {
72- this .agreementVersion .set (agreementVersion );
73- }
74-
7565 /// The accepted Terracotta agreement version.
7666 @ SerializedName ("terracottaAgreementVersion" )
7767 private final IntegerProperty terracottaAgreementVersion = new SimpleIntegerProperty ();
@@ -81,16 +71,6 @@ public IntegerProperty terracottaAgreementVersionProperty() {
8171 return terracottaAgreementVersion ;
8272 }
8373
84- /// Returns the accepted Terracotta agreement version.
85- public int getTerracottaAgreementVersion () {
86- return terracottaAgreementVersion .get ();
87- }
88-
89- /// Sets the accepted Terracotta agreement version.
90- public void setTerracottaAgreementVersion (int terracottaAgreementVersion ) {
91- this .terracottaAgreementVersion .set (terracottaAgreementVersion );
92- }
93-
9474 /// The platform prompt version shown to the user.
9575 @ SerializedName ("platformPromptVersion" )
9676 private final IntegerProperty platformPromptVersion = new SimpleIntegerProperty ();
@@ -100,16 +80,6 @@ public IntegerProperty platformPromptVersionProperty() {
10080 return platformPromptVersion ;
10181 }
10282
103- /// Returns the platform prompt version shown to the user.
104- public int getPlatformPromptVersion () {
105- return platformPromptVersion .get ();
106- }
107-
108- /// Sets the platform prompt version shown to the user.
109- public void setPlatformPromptVersion (int platformPromptVersion ) {
110- this .platformPromptVersion .set (platformPromptVersion );
111- }
112-
11383 /// The number of launcher log files to retain.
11484 @ SerializedName ("logRetention" )
11585 private final IntegerProperty logRetention = new SimpleIntegerProperty (20 );
@@ -119,16 +89,6 @@ public IntegerProperty logRetentionProperty() {
11989 return logRetention ;
12090 }
12191
122- /// Returns the number of launcher log files to retain.
123- public int getLogRetention () {
124- return logRetention .get ();
125- }
126-
127- /// Sets the number of launcher log files to retain.
128- public void setLogRetention (int logRetention ) {
129- this .logRetention .set (logRetention );
130- }
131-
13292 /// Whether offline accounts are enabled for this user.
13393 @ SerializedName ("enableOfflineAccount" )
13494 private final BooleanProperty enableOfflineAccount = new SimpleBooleanProperty (false );
@@ -138,16 +98,6 @@ public BooleanProperty enableOfflineAccountProperty() {
13898 return enableOfflineAccount ;
13999 }
140100
141- /// Returns whether offline accounts are enabled for this user.
142- public boolean isEnableOfflineAccount () {
143- return enableOfflineAccount .get ();
144- }
145-
146- /// Sets whether offline accounts are enabled for this user.
147- public void setEnableOfflineAccount (boolean value ) {
148- enableOfflineAccount .set (value );
149- }
150-
151101 /// The JavaFX font antialiasing mode override.
152102 @ SerializedName ("fontAntiAliasing" )
153103 private final StringProperty fontAntiAliasing = new SimpleStringProperty ();
@@ -157,16 +107,6 @@ public StringProperty fontAntiAliasingProperty() {
157107 return fontAntiAliasing ;
158108 }
159109
160- /// Returns the JavaFX font antialiasing mode override.
161- public @ Nullable String getFontAntiAliasing () {
162- return fontAntiAliasing .get ();
163- }
164-
165- /// Sets the JavaFX font antialiasing mode override.
166- public void setFontAntiAliasing (@ Nullable String value ) {
167- this .fontAntiAliasing .set (value );
168- }
169-
170110 /// User-added Java executable paths.
171111 @ SerializedName ("userJava" )
172112 private final ObservableSet <String > userJava = FXCollections .observableSet (new LinkedHashSet <>());
0 commit comments