Skip to content

Commit 7d880dc

Browse files
committed
reapplied mvn:spotless using jdk8 instead of jdk21 which i had initially done
1 parent 8350fef commit 7d880dc

File tree

14 files changed

+19
-57
lines changed

14 files changed

+19
-57
lines changed

src/main/java/org/zendesk/client/v2/Zendesk.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2394,9 +2394,7 @@ public <T extends SearchResultEntity> Iterable<T> getSearchResults(Class<T> type
23942394
return getSearchResults(type, query, Collections.emptyMap());
23952395
}
23962396

2397-
/**
2398-
* @deprecated Use {@link #getSearchResults(Class, String, Map)} instead.
2399-
*/
2397+
/** @deprecated Use {@link #getSearchResults(Class, String, Map)} instead. */
24002398
@Deprecated
24012399
public <T extends SearchResultEntity> Iterable<T> getSearchResults(
24022400
Class<T> type, String query, String params) {
@@ -2866,9 +2864,7 @@ public Locales listHelpCenterLocales() {
28662864
return complete(submit(req("GET", cnst("/help_center/locales.json")), handle(Locales.class)));
28672865
}
28682866

2869-
/**
2870-
* @deprecated Use {@link Zendesk#listHelpCenterLocales()} instead
2871-
*/
2867+
/** @deprecated Use {@link Zendesk#listHelpCenterLocales()} instead */
28722868
@Deprecated
28732869
public List<String> getHelpCenterLocales() {
28742870
return listHelpCenterLocales().getLocales();

src/main/java/org/zendesk/client/v2/model/Condition.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
import java.io.Serializable;
44

5-
/**
6-
* @author Sandeep Kaul ([email protected])
7-
*/
5+
/** @author Sandeep Kaul ([email protected]) */
86
public class Condition implements Serializable {
97

108
private static final long serialVersionUID = 1L;

src/main/java/org/zendesk/client/v2/model/Conditions.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
import java.util.ArrayList;
55
import java.util.List;
66

7-
/**
8-
* @author Sandeep Kaul([email protected])
9-
*/
7+
/** @author Sandeep Kaul([email protected]) */
108
public class Conditions implements Serializable {
119

1210
private static final long serialVersionUID = 1L;

src/main/java/org/zendesk/client/v2/model/Metric.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
import java.io.Serializable;
55
import java.util.Date;
66

7-
/**
8-
* @author jyrij
9-
*/
7+
/** @author jyrij */
108
public class Metric implements Serializable {
119

1210
private static final long serialVersionUID = -847290591071406141L;
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
package org.zendesk.client.v2.model;
22

3-
/**
4-
* @author Stephen Connolly
5-
*/
3+
/** @author Stephen Connolly */
64
public interface SearchResultEntity {}

src/main/java/org/zendesk/client/v2/model/TicketImport.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
import java.util.Date;
66
import java.util.List;
77

8-
/**
9-
* @author robert-fernandes
10-
*/
8+
/** @author robert-fernandes */
119
@JsonIgnoreProperties(value = "comment", ignoreUnknown = true)
1210
public class TicketImport extends Ticket {
1311

src/main/java/org/zendesk/client/v2/model/schedules/Schedule.java

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ public void setId(Long id) {
2929
this.id = id;
3030
}
3131

32-
/**
33-
* @return Name of the Schedule
34-
*/
32+
/** @return Name of the Schedule */
3533
public String getName() {
3634
return name;
3735
}
@@ -40,9 +38,7 @@ public void setName(String name) {
4038
this.name = name;
4139
}
4240

43-
/**
44-
* @return Time zone of the schedule
45-
*/
41+
/** @return Time zone of the schedule */
4642
@JsonProperty("time_zone")
4743
public String getTimeZone() {
4844
return timeZone;
@@ -52,9 +48,7 @@ public void setTimeZone(String timeZone) {
5248
this.timeZone = timeZone;
5349
}
5450

55-
/**
56-
* @return List of intervals for the schedule
57-
*/
51+
/** @return List of intervals for the schedule */
5852
public List<Interval> getIntervals() {
5953
return intervals;
6054
}
@@ -63,9 +57,7 @@ public void setIntervals(List<Interval> intervals) {
6357
this.intervals = intervals;
6458
}
6559

66-
/**
67-
* @return Time the schedule was created
68-
*/
60+
/** @return Time the schedule was created */
6961
@JsonProperty("created_at")
7062
public Date getCreatedAt() {
7163
return createdAt;
@@ -75,9 +67,7 @@ public void setCreatedAt(Date createdAt) {
7567
this.createdAt = createdAt;
7668
}
7769

78-
/**
79-
* @return Time the schedule was last updated
80-
*/
70+
/** @return Time the schedule was last updated */
8171
@JsonProperty("updated_at")
8272
public Date getUpdatedAt() {
8373
return updatedAt;

src/main/java/org/zendesk/client/v2/model/targets/BasecampTarget.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
import com.fasterxml.jackson.annotation.JsonProperty;
44

5-
/**
6-
* @author adavidson
7-
*/
5+
/** @author adavidson */
86
public class BasecampTarget extends Target {
97
private String targetUrl;
108
private String token;

src/main/java/org/zendesk/client/v2/model/targets/CampfireTarget.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
import com.fasterxml.jackson.annotation.JsonProperty;
44

5-
/**
6-
* @author adavidson
7-
*/
5+
/** @author adavidson */
86
public class CampfireTarget extends Target {
97
private String subdomain;
108
private boolean ssl;

src/main/java/org/zendesk/client/v2/model/targets/EmailTarget.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package org.zendesk.client.v2.model.targets;
22

3-
/**
4-
* @author adavidson
5-
*/
3+
/** @author adavidson */
64
public class EmailTarget extends Target {
75
private String email;
86
private String subject;

0 commit comments

Comments
 (0)