I am working with a piece of code that I find kinda strange. The code I am working on is part of an import utility that takes a CSV file and imports the data into the database.
Inside the code, I see:
ImportUtils.printf("Validation started");
When I look into this method, it is simply calling System.out.println:
public static void printf(String s) {
System.out.println(s);
}
Is there any advantage to this? Could this pose an issue down the road?