make anypipeline.noop public

This commit is contained in:
Vaci Koblizek 2020-11-07 15:59:25 +00:00
parent 66fc361386
commit 45d1470907

View file

@ -161,7 +161,7 @@ public final class AnyPointer {
return this; return this;
} }
Pipeline noop() { public Pipeline noop() {
return new Pipeline(this.hook, this.ops.clone()); return new Pipeline(this.hook, this.ops.clone());
} }