Added notEmpty assert

This commit is contained in:
Samppa Saarela 2009-04-22 18:06:41 +00:00
parent 1c469b9f90
commit d01c58a532

View File

@ -23,4 +23,8 @@ public class Assert {
return object;
}
public static String notEmpty(String contentType) {
return hasText(contentType);
}
}