68ee85f1ae
Motivation Starting from Java 7 method String.split in java is optimized for splitting by single char string. Thus custom StringUtil.split method doesn't have any sense anymore. Even more - it slower than optimized java version. Modifications: Replaced all occurrences of StringUtil.split with String.split. Result: Less code and faster on jdk7