Files
codeql/java/ql/test/stubs/javafx-web/org/reactivestreams/Publisher.java
Tony Torralba 393a0759db More stubs
2023-03-10 12:35:13 +01:00

11 lines
254 B
Java
Generated

// Generated automatically from org.reactivestreams.Publisher for testing purposes
package org.reactivestreams;
import org.reactivestreams.Subscriber;
public interface Publisher<T>
{
void subscribe(org.reactivestreams.Subscriber<? super T> p0);
}