remove unused sysout

This commit is contained in:
JunkJumper 2019-09-23 12:39:18 +02:00
parent 0c76666d42
commit b526af41fc

View File

@ -33,7 +33,6 @@ public class CSV {
public static boolean checkStudentNumber(String s) { public static boolean checkStudentNumber(String s) {
int i = 0; int i = 0;
boolean retour = false; boolean retour = false;
System.out.println(s.length());
if (s.length() >= 1 && s.length() <= 16) { if (s.length() >= 1 && s.length() <= 16) {
while (i < s.length()) while (i < s.length())
{ {