Compare commits

..

No commits in common. "e285b88ba851c389bd00a8fff398646d6010fd32" and "5f63221a7207d1fd953c024b54463645ac3c2362" have entirely different histories.

2 changed files with 2 additions and 13 deletions

View file

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit! #Build Number for ANT. Do not edit!
#Fri Dec 03 18:17:44 CET 2021 #Fri Dec 03 18:08:47 CET 2021
build.number=3 build.number=2

View file

@ -107,17 +107,6 @@ public final class Calgen
System.out.println(line); System.out.println(line);
} }
//
if (current.getDayOfMonth() == 1)
{
String dash = StringUtils.repeat("-", 25);
String monthName = current.getMonth().getDisplayName(TextStyle.FULL, Locale.FRENCH);
monthName = StringUtils.capitalize(monthName);
String monthLine = String.format("%s %s %s", dash, monthName, dash);
System.out.println(monthLine);
}
//
current = current.minusDays(1); current = current.minusDays(1);
} }