gravity settings

This commit is contained in:
2021-10-06 11:13:33 +02:00
parent b12c7c77a5
commit 46e642be51
7 changed files with 43 additions and 62 deletions
@@ -18,9 +18,6 @@ public class LocalUserDetails extends User {
*/
private static final long serialVersionUID = 1L;
private double gravity;
private long karma;
/**
* Instantiates a new local user details.
*
@@ -33,40 +30,4 @@ public class LocalUserDetails extends User {
super(username, password, authorities);
}
/**
* Gets the gravity.
*
* @return the gravity
*/
public double getGravity() {
return gravity;
}
/**
* Sets the gravity.
*
* @param gravity the new gravity
*/
public void setGravity(double gravity) {
this.gravity = gravity;
}
/**
* Gets the karma.
*
* @return the karma
*/
public long getKarma() {
return karma;
}
/**
* Sets the karma.
*
* @param karma the new karma
*/
public void setKarma(long karma) {
this.karma = karma;
}
}