Skip to content

Commit

Permalink
ajustando acentos
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoadacosta committed Mar 24, 2011
1 parent 17befa5 commit 2abe4d8
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -59,15 +59,15 @@ public EasyGridObjectBuilder() {
@SuppressWarnings("unchecked")
public EasyGridObjectBuilder(T object) {
if (object == null) {
throw new IllegalArgumentException("objeto n‹o pode ser nulo");
throw new IllegalArgumentException("objeto não pode ser nulo");
}
objects = Arrays.asList(object);
this.totalRecords = 1L;
}

public EasyGridObjectBuilder(Collection<T> objects, Long totalRecords) {
if (objects == null) {
throw new IllegalArgumentException("cole‹o n‹o pode ser nula");
throw new IllegalArgumentException("coleção não pode ser nula");
}
this.objects = objects;
this.totalRecords = totalRecords;
Expand Down

0 comments on commit 2abe4d8

Please sign in to comment.