Skip to content

Commit e30612b

Browse files
committed
formatting
1 parent d99fd28 commit e30612b

2 files changed

Lines changed: 25 additions & 10 deletions

File tree

constructorio-client/src/main/java/io/constructor/client/ConstructorIO.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3921,8 +3921,7 @@ public String createOrUpdateSearchabilityV2(SearchabilityV2Request searchability
39213921
new ExclusionStrategy() {
39223922
@Override
39233923
public boolean shouldSkipField(FieldAttributes f) {
3924-
return f.getDeclaringClass()
3925-
== SearchabilityV2.class
3924+
return f.getDeclaringClass() == SearchabilityV2.class
39263925
&& f.getName().equals("name");
39273926
}
39283927

constructorio-client/src/main/java/io/constructor/client/FacetConfigurationsV2GetRequest.java

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,42 +30,58 @@ public FacetConfigurationsV2GetRequest() {
3030
this.section = ConstructorIO.DEFAULT_SECTION;
3131
}
3232

33-
/** @return the section */
33+
/**
34+
* @return the section
35+
*/
3436
public String getSection() {
3537
return section;
3638
}
3739

38-
/** @param section the section to set */
40+
/**
41+
* @param section the section to set
42+
*/
3943
public void setSection(String section) {
4044
this.section = section;
4145
}
4246

43-
/** @return the page number */
47+
/**
48+
* @return the page number
49+
*/
4450
public Integer getPage() {
4551
return page;
4652
}
4753

48-
/** @param page the page number to set */
54+
/**
55+
* @param page the page number to set
56+
*/
4957
public void setPage(Integer page) {
5058
this.page = page;
5159
}
5260

53-
/** @return the number of results per page */
61+
/**
62+
* @return the number of results per page
63+
*/
5464
public Integer getNumResultsPerPage() {
5565
return numResultsPerPage;
5666
}
5767

58-
/** @param numResultsPerPage the number of results per page to set */
68+
/**
69+
* @param numResultsPerPage the number of results per page to set
70+
*/
5971
public void setNumResultsPerPage(Integer numResultsPerPage) {
6072
this.numResultsPerPage = numResultsPerPage;
6173
}
6274

63-
/** @return the offset */
75+
/**
76+
* @return the offset
77+
*/
6478
public Integer getOffset() {
6579
return offset;
6680
}
6781

68-
/** @param offset the offset to set */
82+
/**
83+
* @param offset the offset to set
84+
*/
6985
public void setOffset(Integer offset) {
7086
this.offset = offset;
7187
}

0 commit comments

Comments
 (0)