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 51
51
* subfield values can be empty.</li>
52
52
* </ul>
53
53
*
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
55
55
* delimiter and not as a record delimiter. Records need to be
56
56
* separated prior to parsing them.</p>
57
57
*
@@ -149,7 +149,7 @@ public void process(final String record) {
149
149
buffer = StringUtil .copyToBuffer (record , buffer );
150
150
recordLen = record .length ();
151
151
152
- if (recordIsEmpty ()) {
152
+ if (isRecordEmpty ()) {
153
153
return ;
154
154
}
155
155
@@ -181,7 +181,7 @@ protected void onResetStream() {
181
181
parserContext .reset ();
182
182
}
183
183
184
- private boolean recordIsEmpty () {
184
+ private boolean isRecordEmpty () {
185
185
for (int i = 0 ; i < recordLen ; ++i ) {
186
186
if (buffer [i ] != ' ' && buffer [i ] != '\t' ) {
187
187
return false ;
You can’t perform that action at this time.
0 commit comments