OPENJPA-2119: Fix checkstyle error.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1242163 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Richard G. Curtis 2012-02-08 22:58:33 +00:00
parent 824753b36c
commit 98859e2006
1 changed files with 5 additions and 1 deletions

View File

@ -598,7 +598,11 @@ public class SourceCode {
codeLines.add(tab + line); codeLines.add(tab + line);
return this; return this;
} }
// if tabInc = true, the current line, and all following lines will be tabbed. If false, a tab will be removed.
/**
* if tabInc = true, the current line, and all following lines will be tabbed.
* If false, a tab will be removed.
*/
public Method addCodeLine(String line, boolean tabInc) { public Method addCodeLine(String line, boolean tabInc) {
setTab(tabInc); setTab(tabInc);
return addCodeLine(line); return addCodeLine(line);