Cleanup various warnings in akka-stream #26395

This commit is contained in:
Christopher Batey 2019-02-26 17:28:29 +00:00 committed by Johan Andrén
parent c3806c9135
commit 51add23b2a
20 changed files with 44 additions and 60 deletions

View file

@ -56,7 +56,6 @@ import scala.annotation.switch
private var trimFront = 0 // number of chars to drop from the front of the bytestring before emitting (skip whitespace etc)
private var depth = 0 // counter of object-nesting depth, once hits 0 an object should be emitted
private var charsInObject = 0
private var completedObject = false
private var inStringExpression = false
private var isStartOfEscapeSequence = false
@ -140,7 +139,6 @@ import scala.annotation.switch
depth -= 1
pos += 1
if (depth == 0) {
charsInObject = 0
completedObject = true
}
} else if (isWhitespace(input) && !inStringExpression) {