mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -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> {
|
||||
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 {
|
||||
void cancel();
|
||||
|
||||
void request(long n);
|
||||
void request(long n);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user