File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/org/culturegraph/mf/stream/converter/bib Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5151 * subfield values can be empty.</li>
5252 * </ul>
5353 *
54- * <p>Please not that the record markers is treated as a field
54+ * <p>Please note that the record markers is treated as a field
5555 * delimiter and not as a record delimiter. Records need to be
5656 * separated prior to parsing them.</p>
5757 *
@@ -149,7 +149,7 @@ public void process(final String record) {
149149 buffer = StringUtil .copyToBuffer (record , buffer );
150150 recordLen = record .length ();
151151
152- if (recordIsEmpty ()) {
152+ if (isRecordEmpty ()) {
153153 return ;
154154 }
155155
@@ -181,7 +181,7 @@ protected void onResetStream() {
181181 parserContext .reset ();
182182 }
183183
184- private boolean recordIsEmpty () {
184+ private boolean isRecordEmpty () {
185185 for (int i = 0 ; i < recordLen ; ++i ) {
186186 if (buffer [i ] != ' ' && buffer [i ] != '\t' ) {
187187 return false ;
You can’t perform that action at this time.
0 commit comments