Skip to content

Commit 39b71e4

Browse files
committed
Fixed javaDoc
1 parent 5f7a3af commit 39b71e4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/browserstack/client/model/BrowserListing.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,31 @@ public class BrowserListing implements Serializable {
2121

2222

2323
/**
24-
* @return The desktop
24+
* @return The desktopPlatforms
2525
*/
2626
@JsonProperty("desktop")
2727
public List<DesktopPlatform> getDesktopPlatforms() {
2828
return desktopPlatforms;
2929
}
3030

3131
/**
32-
* @param desktop The desktop
32+
* @param desktopPlatforms The desktopPlatforms
3333
*/
3434
@JsonProperty("desktop")
3535
public void setDesktopPlatforms(List<DesktopPlatform> desktopPlatforms) {
3636
this.desktopPlatforms = desktopPlatforms;
3737
}
3838

3939
/**
40-
* @return The mobile
40+
* @return The mobilePlatforms
4141
*/
4242
@JsonProperty("mobile")
4343
public List<MobilePlatform> getMobilePlatforms() {
4444
return mobilePlatforms;
4545
}
4646

4747
/**
48-
* @param mobile The mobile
48+
* @param mobilePlatforms The mobilePlatforms
4949
*/
5050
@JsonProperty("mobile")
5151
public void setMobilePlatforms(List<MobilePlatform> mobilePlatforms) {

0 commit comments

Comments
 (0)