Skip to content

Commit ae372db

Browse files
committed
Removed unnecessary cast.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@610516 13f79535-47bb-0310-9956-ffa450edef68
1 parent 9c1d49e commit ae372db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/java/org/apache/commons/io/input/CharSequenceReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public int read() {
7979
if (idx >= charSequence.length()) {
8080
return -1;
8181
} else {
82-
return (int)charSequence.charAt(idx++);
82+
return charSequence.charAt(idx++);
8383
}
8484
}
8585

0 commit comments

Comments
 (0)