@@ -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