quick documentation: fix formatting stripping html tags (IDEA-118673)

This commit is contained in:
Anna Kozlova
2013-12-30 22:11:46 +01:00
parent f7ce11617e
commit 3d9d563c43
4 changed files with 39 additions and 14 deletions
@@ -0,0 +1,12 @@
interface Producer<T> {
<E extends Exception> void drainTo( Consumer<? super T, E> consumer, Object someParameter ) throws E;
}
interface Consumer<T, E extends Exception> {
void consume( T message ) throws E;
}