Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Javadoc documentation to project #18

Merged
merged 6 commits into from
Nov 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove some redundant exception throwing comments
  • Loading branch information
subhramit committed Nov 11, 2024
commit 1e44951dc63d32f16c0c27b84c60dd4b1de072ff
1 change: 0 additions & 1 deletion src/main/java/io/github/lambdatest/gradle/AppUploader.java
Original file line number Diff line number Diff line change
@@ -25,7 +25,6 @@ public class AppUploader {
* @param username The LambdaTest account username
* @param accessKey The LambdaTest account access key
* @param appFilePath The path to the application file to be uploaded
* @throws IllegalArgumentException if any of the parameters are null
*/
public AppUploader(String username, String accessKey, String appFilePath) {
if (username == null) throw new IllegalArgumentException("Username cannot be null");
2 changes: 0 additions & 2 deletions src/main/java/io/github/lambdatest/gradle/Constants.java
Original file line number Diff line number Diff line change
@@ -7,8 +7,6 @@
public class Constants {
/**
* Private constructor to prevent instantiation of this utility class.
*
* @throws UnsupportedOperationException always, as this class should not be instantiated
*/
private Constants() {
throw new UnsupportedOperationException(
2 changes: 0 additions & 2 deletions src/main/java/io/github/lambdatest/gradle/UploaderUtil.java
Original file line number Diff line number Diff line change
@@ -22,8 +22,6 @@
public final class UploaderUtil {
/**
* Private constructor to prevent instantiation of this utility class.
*
* @throws UnsupportedOperationException always, as this class should not be instantiated
*/
private UploaderUtil() {
throw new UnsupportedOperationException(
Loading