Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix compilation problem
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Jul 22, 2013
1 parent b5f2a41 commit 67323cf
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -74,7 +74,7 @@ public void write(OutputStream output) throws IOException, WebApplicationExcepti
@Cleanup
Closeable closeable = (Closeable) (tuIter instanceof Closeable ? tuIter : NullCloseable.INSTANCE);
@SuppressWarnings("null")
PeekingIterator<SourceContents> iter = Iterators.peekingIterator(tuIter);
PeekingIterator<TU> iter = Iterators.peekingIterator(tuIter);
// Fetch the first result, so that we can fail fast, before
// writing any output. This should enable RESTEasy to return an
// error instead of simply aborting the output stream.
Expand Down

0 comments on commit 67323cf

Please sign in to comment.