You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ki...@apache.org on 2021/11/11 04:11:48 UTC

[dolphinscheduler] branch dev updated: add default constructor (#6780)

This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 088a5a4  add default constructor (#6780)
088a5a4 is described below

commit 088a5a47063fe09b84023f55884c99dd0ed8d05a
Author: zwZjut <zw...@163.com>
AuthorDate: Thu Nov 11 12:11:43 2021 +0800

    add default constructor (#6780)
    
    Co-authored-by: honghuo.zw <ho...@alibaba-inc.com>
---
 .../src/main/java/org/apache/dolphinscheduler/api/utils/PageInfo.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/utils/PageInfo.java b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/utils/PageInfo.java
index 95405a4..5b443dc 100644
--- a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/utils/PageInfo.java
+++ b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/utils/PageInfo.java
@@ -51,6 +51,10 @@ public class PageInfo<T> {
      */
     private Integer pageNo;
 
+    public PageInfo() {
+        
+    }
+
     public PageInfo(Integer currentPage, Integer pageSize) {
         if (currentPage == null) {
             currentPage = 1;