classlib: fix strange character in method names

This commit is contained in:
Alexey Andreev 2023-02-02 10:15:23 +01:00
parent 8800e7153b
commit f09a427827

View File

@ -29,17 +29,17 @@ public class TFlow {
public interface Subscriber<T> { public interface Subscriber<T> {
void onComplete(); void onComplete();
void onError(Throwable t); void onError(Throwable t);
void onNext(T t); void onNext(T t);
void onSubscribe(Subscription s); void onSubscribe(Subscription s);
} }
public interface Subscription { public interface Subscription {
void cancel(); void cancel();
void request(long n); void request(long n);
} }
} }