Skip to content

Commit 5102e0c

Browse files
committed
modify pom and doc
1 parent 82b713d commit 5102e0c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
<jdkVersion>1.6</jdkVersion>
2424
<jdkVersion.test>1.6</jdkVersion.test>
25-
<additionalparam>-Xdoclint:none</additionalparam>
25+
<!--<additionalparam>-Xdoclint:none</additionalparam>-->
2626
</properties>
2727

2828
<parent>

src/main/java/cn/jpush/api/schedule/model/TriggerPayload.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public static class Builder{
9393
/**
9494
* Setup time for single trigger.
9595
* @param time The execute time, format yyyy-MM-dd HH:mm:ss
96-
* @return
96+
* @return this Builder
9797
*/
9898
public Builder setSingleTime(String time) {
9999
this.time = time;
@@ -106,7 +106,7 @@ public Builder setSingleTime(String time) {
106106
* @param start The start time, format yyyy-MM-dd HH:mm:ss
107107
* @param end The end time, format yyyy-MM-dd HH:mm:ss
108108
* @param time The execute time, format HH:mm:ss
109-
* @return
109+
* @return this Builder
110110
*/
111111
public Builder setPeriodTime(String start, String end, String time) {
112112
this.start = start;
@@ -123,7 +123,7 @@ public Builder setPeriodTime(String start, String end, String time) {
123123
* If time unit is day, the point should be null.
124124
* If time unit is week, should be the abbreviation of the days. eg. {"MON", "TUE"}
125125
* If time unit is month, should be the date of the days. eg. {"01", "03"}
126-
* @return
126+
* @return this Builder
127127
*/
128128
public Builder setTimeFrequency(TimeUnit time_unit, int frequency, String[] point) {
129129
this.time_unit = time_unit;

src/main/resources/javadoc-overview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
<body>
66
JPush API Java 客户端。
77

8-
主要分为 2 个功能部分:推送、报表
8+
主要分为 4 个功能部分:推送、报表、Tag/Alias管理、定时任务管理
99
</body>
1010
</html>

0 commit comments

Comments
 (0)