Skip to content

Commit

Permalink
lint: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
arieldossantos authored Dec 22, 2020
1 parent b701f20 commit 73e995b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/br/eng/r2a/dokument/documents/brazil/CPF.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object CPF: Document {

//continue
var dvCurrent10 = documentValue.substring(9,10).toInt()
var dvCurrent11= documentValue.substring(10,11).toInt()
var dvCurrent11 = documentValue.substring(10,11).toInt()

//the sum of the nine first digits determines the tenth digit
val cpfNineFirst = IntArray(9)
Expand Down Expand Up @@ -65,4 +65,4 @@ object CPF: Document {

return true
}
}
}

0 comments on commit 73e995b

Please sign in to comment.