Skip to content

Commit 0f05e63

Browse files
committed
Merge branch '2.18'
2 parents 9bd74b8 + f5d29e9 commit 0f05e63

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

src/main/java/tools/jackson/core/Base64Variant.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ public enum PaddingReadBehaviour {
4444
* padding characters are used.
4545
*/
4646
PADDING_ALLOWED
47-
;
4847
}
4948

5049
private final static int INT_SPACE = 0x20;
@@ -302,7 +301,6 @@ protected Object readResolve() {
302301
|| (_paddingChar != base._paddingChar)
303302
|| (_paddingReadBehaviour != base._paddingReadBehaviour)
304303
|| (_maxLineLength != base._maxLineLength)
305-
|| (_writePadding != base._writePadding)
306304
) {
307305
return new Base64Variant(base,
308306
_name, _writePadding, _paddingChar, _paddingReadBehaviour, _maxLineLength);

src/main/java/tools/jackson/core/TreeNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ public interface TreeNode
218218
TreeNode path(int index);
219219

220220
/**
221-
* Method for accessing names of all properties for this node, iff
221+
* Method for accessing names of all properties for this node, if (and only if)
222222
* this node is an Object node. Number of property names accessible
223223
* will be {@link #size}.
224224
*

src/main/java/tools/jackson/core/base/ParserBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ protected void _releaseBuffers() {
338338

339339
/**
340340
* Method called when an EOF is encountered between tokens.
341-
* If so, it may be a legitimate EOF, but only iff there
341+
* If so, it may be a legitimate EOF, but <b>only</b> if there
342342
* is no open non-root context.
343343
*/
344344
@Override

0 commit comments

Comments
 (0)