Skip to content

Commit

Permalink
Adapt newly introduced lock manager to new multiple resource release …
Browse files Browse the repository at this point in the history
…possibilities.
  • Loading branch information
MishaDemianenko committed Jul 17, 2017
1 parent 556ce42 commit 02e676a
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -84,12 +84,12 @@ public boolean reEnterExclusive( ResourceType resourceType, long resourceId )
} }


@Override @Override
public void releaseShared( ResourceType resourceType, long resourceId ) public void releaseShared( ResourceType resourceType, long... resourceIds )
{ {
} }


@Override @Override
public void releaseExclusive( ResourceType resourceType, long resourceId ) public void releaseExclusive( ResourceType resourceType, long... resourceIds )
{ {
throw new IllegalStateException( "Should never happen" ); throw new IllegalStateException( "Should never happen" );
} }
Expand Down

0 comments on commit 02e676a

Please sign in to comment.