OPENJPA-1700 Findbugs - The initial value of this parameter is ignored, and the parameter is overwritten here. This often indicates a mistaken belief that the write to the parameter will be conveyed back to the caller.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@954689 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald Woods 2010-06-15 01:29:53 +00:00
parent 3865aedfaa
commit bc6c92ca64
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ public class IdentifierRule {
}
public void setDelimitReservedWords(boolean delimitReservedWords) {
delimitReservedWords = _delimitReservedWords;
_delimitReservedWords = delimitReservedWords;
}
public boolean getDelimitReservedWords() {