Skip to content

Commit

Permalink
Fixing build failure after dependency upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Nov 6, 2019
1 parent 0c1cc06 commit 4a36211
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -45,9 +45,9 @@ public void resetTypeId() {
}

@Override
protected ScalarEvent _scalarEvent(String value, Character style) {
protected ScalarEvent _scalarEvent(String value, DumperOptions.ScalarStyle style) {
if (value.indexOf('\n') != -1) {
style = Character.valueOf('|');
style = DumperOptions.ScalarStyle.createStyle('|');
}

ImplicitTuple implicit;
Expand Down

0 comments on commit 4a36211

Please sign in to comment.