13
0
geforkt von Mirrors/Velocity

[BREAKING] Rename withUuid()->withId() and withId()->withUndashedId()

Dieser Commit ist enthalten in:
Andrew Steinborn 2018-11-17 16:40:09 -05:00
Ursprung d1473ed938
Commit 3023a90295

Datei anzeigen

@ -82,7 +82,7 @@ public final class GameProfile {
* @param id the new unique id
* @return the new {@code GameProfile}
*/
public GameProfile withUuid(UUID id) {
public GameProfile withId(UUID id) {
return new GameProfile(Preconditions.checkNotNull(id, "id"), UuidUtils.toUndashed(id),
this.name, this.properties);
}
@ -93,7 +93,7 @@ public final class GameProfile {
* @param undashedId the new undashed id
* @return the new {@code GameProfile}
*/
public GameProfile withId(String undashedId) {
public GameProfile withUndashedId(String undashedId) {
return new GameProfile(
UuidUtils.fromUndashed(Preconditions.checkNotNull(undashedId, "undashedId")), undashedId,
this.name, this.properties);