Пример #1
0
 public int getMinMonthsWithoutPenalty() {
   int result = credits.get(0).getMonthsWithoutPenalty();
   for (Credit credit : credits)
     if (credit.getMonthsWithoutPenalty() < result) result = credit.getMonthsWithoutPenalty();
   return result;
 }