replace long literal to L from l
This commit is contained in:
parent
1fdb00afd5
commit
c3e977031f
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue