replace long literal to L from l

This commit is contained in:
null44 2016-05-09 17:02:53 +09:00
parent 1fdb00afd5
commit c3e977031f
3 changed files with 3 additions and 3 deletions

View file

@ -72,7 +72,7 @@ public class CreateForm implements Serializable {
public Integer depth;
@Min(value = 0)
@Max(value = 9223372036854775807l)
@Max(value = 9223372036854775807L)
@ValidateTypeFailure
public Long maxAccessCount;

View file

@ -74,7 +74,7 @@ public class CreateForm implements Serializable {
public Integer depth;
@Min(value = 0)
@Max(value = 9223372036854775807l)
@Max(value = 9223372036854775807L)
@ValidateTypeFailure
public Long maxAccessCount;

View file

@ -42,7 +42,7 @@ public class CrawlingConfigForm implements Serializable {
public Integer depth;
@Min(value = 0)
@Max(value = 9223372036854775807l)
@Max(value = 9223372036854775807L)
@ValidateTypeFailure
public Long maxAccessCount;