Change access specifier to private

This commit is contained in:
Prasoon 2018-01-24 21:28:38 +05:30
parent 652d227982
commit 206b9aa75f

View File

@ -24,7 +24,7 @@ public class CountChar {
* @return int: Number of characters in the passed string
* */
public static int CountCharacters(String str) {
private static int CountCharacters(String str) {
int count = 0;