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

git-svn-id: https://svn.apache.org/repos/asf/openjpa/branches/2.1.x@1171254 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Heath Thomann 2011-09-15 20:15:43 +00:00
parent 3a9bd6ad3c
commit 860954f764

View File

@ -3411,8 +3411,6 @@ public class DBDictionary
buf.append(" INCREMENT BY ").append(seq.getIncrement() * seq.getAllocate()); 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() }; return new String[]{ buf.toString() };
} }