Skip to content

Commit

Permalink
Rename isPristine to isImplicit
Browse files Browse the repository at this point in the history
  • Loading branch information
davidegrohmann committed Feb 26, 2016
1 parent 5607a13 commit 40f8939
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -94,7 +94,7 @@ public URI uri()
return uriScheme.txUri( id ); return uriScheme.txUri( id );
} }


public boolean isPristine() public boolean isImplicit()
{ {
return implicitTransaction; return implicitTransaction;
} }
Expand Down
Expand Up @@ -190,7 +190,7 @@ private StreamingOutput executeStatementsAndCommit( final InputStream input,
final HttpServletRequest request ) final HttpServletRequest request )
{ {
return output -> { return output -> {
OutputStream wrappedOutput = transactionHandle.isPristine() OutputStream wrappedOutput = transactionHandle.isImplicit()
? new InterruptingOutputStream( output, transactionHandle ) ? new InterruptingOutputStream( output, transactionHandle )
: output; : output;
transactionHandle.commit( transactionHandle.commit(
Expand Down

0 comments on commit 40f8939

Please sign in to comment.