mirror of https://github.com/halo-dev/halo
Fix lombok error
parent
6c677c94ef
commit
7d17d6c9a8
|
@ -1,8 +1,6 @@
|
|||
package run.halo.app.model.support;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.ToString;
|
||||
import lombok.*;
|
||||
import org.springframework.data.domain.PageImpl;
|
||||
import org.springframework.data.domain.Pageable;
|
||||
|
||||
|
@ -14,7 +12,7 @@ import java.util.List;
|
|||
* @author johnniang
|
||||
* @date 3/25/19
|
||||
*/
|
||||
@Data
|
||||
@Getter
|
||||
@ToString(callSuper = true)
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class CommentPage<T> extends PageImpl<T> {
|
||||
|
|
Loading…
Reference in New Issue