Fix compile

This commit is contained in:
Luck 2019-11-23 14:10:17 +00:00
parent 6481bac045
commit 8e9683b33f
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
2 changed files with 3 additions and 8 deletions

View File

@ -69,11 +69,6 @@ public class ApiTrack implements net.luckperms.api.track.Track {
return this.handle.getGroups();
}
@Override
public int getSize() {
return this.handle.getSize();
}
@Override
public String getNext(@NonNull Group current) {
Objects.requireNonNull(current, "current");

View File

@ -66,7 +66,7 @@ public final class SubjectProxy implements Subject, ProxiedSubject, ProxiedServi
}
// lazy init
private QueryOptionsSupplier getContextsCache() {
private QueryOptionsSupplier queryOptionsCache() {
if (this.queryOptionsSupplier == null) {
this.queryOptionsSupplier = this.service.getContextManager().getCacheFor(this);
}
@ -160,12 +160,12 @@ public final class SubjectProxy implements Subject, ProxiedSubject, ProxiedServi
@Override
public @NonNull Set<Context> getActiveContexts() {
return CompatibilityUtil.convertContexts(getContextsCache().getContextSet());
return CompatibilityUtil.convertContexts(queryOptionsCache().getContextSet());
}
@Override
public ImmutableContextSet getActiveContextSet() {
return getContextsCache().getContextSet();
return queryOptionsCache().getContextSet();
}
@Override