5253545556575859606162
l = new ArrayList<Rating>(); userRatings.put(subject, l); } if (l.size() + 1 > subject.getMaxRateCount()) { throw new RateLimitExceededException(); } //add the rating for the subject l.add(new DefaulRating(subject, rater, student, grade)); }