Skip to content

Commit bc62d07

Browse files
javadoc fixes
1 parent ab89375 commit bc62d07

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
distribution: 'adopt'
1414
java-version: '8'
1515
- name: Test
16-
run: mvn install -Dmaven.javadoc.skip=true -Dgpg.skip=true -B -V
16+
run: mvn install -Dgpg.skip=true -B -V
1717
env:
1818
TB_KEY: ${{ secrets.TB_KEY }}
1919
TB_SECRET: ${{ secrets.TB_SECRET }}

src/main/java/com/testingbot/models/TestingbotBrowser.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
import java.io.Serializable;
66

7+
/**
8+
* Holds information about the TestingbotBrowser items that TestingBot provides
9+
* You can find the list of browsers on
10+
* <a href="https://testingbot.com/support/getting-started/browsers.html">https://testingbot.com/support/getting-started/browsers.html</a>.
11+
*
12+
* @author TestingBot
13+
*/
714
public class TestingbotBrowser implements Serializable {
815
private static final long serialVersionUID = 1L;
916
private String name;

src/main/java/com/testingbot/testingbotrest/TestingbotREST.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public boolean deleteTest(String sessionID) {
127127
/**
128128
* Gets list of available browsers from TestingBot
129129
*
130-
* @return ArrayList<TestingbotBrowser>
130+
* @return ArrayList containing TestingbotBrowser objects.
131131
*/
132132
public ArrayList<TestingbotBrowser> getBrowsers() {
133133
return this.apiGet("https://api.testingbot.com/v1/browsers", TypeToken.getParameterized(ArrayList.class, TestingbotBrowser.class).getType());
@@ -405,7 +405,7 @@ public TestingBotStorageFileCollection getStorageFiles(int offset, int count) {
405405
*
406406
* @param offset where to begin
407407
* @param count number of devices
408-
* @return List<TestingbotDevice> devices
408+
* @return List containing TestingbotDevice objects.
409409
*/
410410
public List<TestingbotDevice> getAvailableDevices(int offset, int count) {
411411
return this.apiGet("https://api.testingbot.com/v1/devices/available/?offset=" + offset + "&count=" + count, TypeToken.getParameterized(List.class, TestingbotDevice.class).getType());
@@ -417,7 +417,7 @@ public List<TestingbotDevice> getAvailableDevices(int offset, int count) {
417417
*
418418
* @param offset where to begin
419419
* @param count number of real devices
420-
* @return List<TestingbotDevice> devices
420+
* @return List containing TestingbotDevice objects.
421421
*/
422422
public List<TestingbotDevice> getDevices(int offset, int count) {
423423
return this.apiGet("https://api.testingbot.com/v1/devices/?offset=" + offset + "&count=" + count, TypeToken.getParameterized(List.class, TestingbotDevice.class).getType());

0 commit comments

Comments
 (0)