Remove unnecessary nullability from parseString.

This commit is contained in:
Danila Fedorin 2017-09-16 00:16:48 -07:00
parent 540e5d6099
commit 88e3bb7109
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class Abacus(val configuration: Configuration) {
* @param input the input string to parse
* @return the resulting tree, null if the tree builder or the produced tree are null.
*/
fun parseString(input: String): TreeNode? = treeBuilder.fromString(input)
fun parseString(input: String): TreeNode = treeBuilder.fromString(input)
/**
* Evaluates the given tree.
*