mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2025-01-03 05:44:10 -08:00
classlib: fix strange character in method names
This commit is contained in:
parent
8800e7153b
commit
f09a427827
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user