Merge branch 'v6' into feature/v6/pipeline-queue

This commit is contained in:
dordsor21 2020-07-24 13:10:11 +01:00
commit 416e181992
No known key found for this signature in database
GPG Key ID: 1E53E88969FFCF0B

View File

@ -53,9 +53,9 @@ final class TemporaryMetaDataAccess<T> extends MetaDataAccess<T> {
return (T) old;
}
@Override public void set(@Nonnull T value) {
@Override public void set(@Nonnull final T value) {
this.checkClosed();
this.getPlayer().setMeta(this.getMetaDataKey().toString(), null);
this.getPlayer().setMeta(this.getMetaDataKey().toString(), value);
}
@Nonnull @Override public Optional<T> get() {