Commit 94523ea payniexiao
committed
1 parent 589bced commit 94523ea Copy full SHA for 94523ea
File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,6 @@ public class Sum extends GetFunc {
41
41
this . rowIndex = rowIndex;
42
42
}
43
43
44
- public SumParam () {
45
- this (- 1 , - 1 );
46
- }
47
-
48
44
public int getRowIndex () {
49
45
return rowIndex;
50
46
}
@@ -160,6 +156,10 @@ public class Sum extends GetFunc {
160
156
public Sum (SumParam param ) {
161
157
super (param);
162
158
}
159
+
160
+ public Sum () {
161
+ this (null );
162
+ }
163
163
164
164
// 获取落在该分区的行分片的元素的和,本方法会在PS端调用
165
165
@Override
Original file line number Diff line number Diff line change @@ -131,6 +131,10 @@ public class Random extends UpdaterFunc {
131
131
public Random (UpdaterParam param ) {
132
132
super (param);
133
133
}
134
+
135
+ public Random () {
136
+ this (null );
137
+ }
134
138
135
139
// 分区random操作
136
140
@Override
You can’t perform that action at this time.
0 commit comments