OPENJPA-1376: Updated DBDictionary to remove extraneous 'if' block.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/2.0.x@1171231 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Heath Thomann 2011-09-15 19:09:34 +00:00
parent 21e2d82e2c
commit 2dad8e53ab
1 changed files with 0 additions and 2 deletions

View File

@ -3394,8 +3394,6 @@ public class DBDictionary
buf.append(" INCREMENT BY ").append(seq.getIncrement() * seq.getAllocate());
}
if (seq.getIncrement() > 1)
buf.append(" INCREMENT BY ").append(seq.getIncrement());
return new String[]{ buf.toString() };
}