mirror of
https://github.com/sismics/docs.git
synced 2024-11-14 18:27:58 +01:00
Typo, TODO
This commit is contained in:
parent
f5079e83cb
commit
fc53758eb7
@ -44,7 +44,6 @@ public class MemoryAppender extends AppenderSkeleton {
|
||||
|
||||
@Override
|
||||
public synchronized void append(LoggingEvent event) {
|
||||
// TODO Don't use size()
|
||||
while (logQueue.size() > size) {
|
||||
logQueue.remove();
|
||||
}
|
||||
|
@ -102,7 +102,6 @@ public class ValidationUtil {
|
||||
* @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);
|
||||
}
|
||||
|
||||
|
@ -300,6 +300,9 @@ public class DocumentResource extends BaseResource {
|
||||
*
|
||||
* @param title Title
|
||||
* @param description Description
|
||||
* @param tags Tags
|
||||
* @param language Language
|
||||
* @param createDateStr Creation date
|
||||
* @return Response
|
||||
* @throws JSONException
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user