mirror of
https://github.com/sismics/docs.git
synced 2024-11-15 02:37:57 +01:00
Typo, TODO
This commit is contained in:
parent
f5079e83cb
commit
fc53758eb7
@ -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();
|
||||||
}
|
}
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user