Null pointer translation fix

This commit is contained in:
paulevsGitch 2021-11-02 15:25:08 +03:00
parent 8eba063b40
commit 3efa71b08a
5 changed files with 5 additions and 5 deletions

View file

@ -0,0 +1,6 @@
package ru.bclib.interfaces;
@FunctionalInterface
public interface TriConsumer<A, B, C> {
void accept(A a, B b, C c);
}