OPENJPA-1868: Fix checkstyle failure.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1030178 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Richard G. Curtis 2010-11-02 19:03:22 +00:00
parent f8179d7282
commit aa9573698b
1 changed files with 2 additions and 1 deletions

View File

@ -217,7 +217,8 @@ public class JDBCFetchConfigurationImpl
&& direction != ResultSet.FETCH_FORWARD
&& direction != ResultSet.FETCH_REVERSE
&& direction != ResultSet.FETCH_UNKNOWN)
throw new IllegalArgumentException(_loc.get("bad-fetch-direction", Integer.valueOf(direction)).getMessage());
throw new IllegalArgumentException(_loc.get("bad-fetch-direction", Integer.valueOf(direction))
.getMessage());
if (direction == DEFAULT) {
JDBCConfiguration conf = getJDBCConfiguration();