Typo, TODO

This commit is contained in:
jendib 2013-09-03 18:03:44 +02:00
parent f5079e83cb
commit fc53758eb7
3 changed files with 3 additions and 2 deletions

View File

@ -44,7 +44,6 @@ public class MemoryAppender extends AppenderSkeleton {
@Override @Override
public synchronized void append(LoggingEvent event) { public synchronized void append(LoggingEvent event) {
// TODO Don't use size()
while (logQueue.size() > size) { while (logQueue.size() > size) {
logQueue.remove(); logQueue.remove();
} }

View File

@ -102,7 +102,6 @@ public class ValidationUtil {
* @throws JSONException * @throws JSONException
*/ */
public static void validateHexColor(String s, String name, boolean nullable) throws JSONException { public static void validateHexColor(String s, String name, boolean nullable) throws JSONException {
// TODO Do a real check
ValidationUtil.validateLength(s, "name", 7, 7, nullable); ValidationUtil.validateLength(s, "name", 7, 7, nullable);
} }

View File

@ -300,6 +300,9 @@ public class DocumentResource extends BaseResource {
* *
* @param title Title * @param title Title
* @param description Description * @param description Description
* @param tags Tags
* @param language Language
* @param createDateStr Creation date
* @return Response * @return Response
* @throws JSONException * @throws JSONException
*/ */