aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/GoodGenerator/util/CharExchanger.java
blob: afd5a49999d842c66cf4e0915fc0c15ae8412af6 (plain)
1
2
3
4
5
6
7
8
package GoodGenerator.util;

public class CharExchanger {
    public static char shifter(int unicode){
        char c = (char)unicode;
        return c;
    }
}