Skip to content

removed unnecessary usage of public on interface methods #172

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

Merged
merged 1 commit into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,28 @@ public interface Client {
/**
* Gets the application's installation id
*/
public String getInstallationId();
String getInstallationId();

/**
* Gets the application's title
*
*/
public String getAppTitle();
String getAppTitle();

/**
* Gets the application's version
*
*/
public String getAppVersionName();
String getAppVersionName();

/**
* Gets the application's version code
*
*/
public String getAppVersionCode();
String getAppVersionCode();

/**
* Gets the application's package name
*/
public String getAppPackageName();
String getAppPackageName();
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ public interface ClientContext {
* Gets the client information provided by the AWS Mobile SDK
*
*/
public Client getClient();
Client getClient();

/**
* Gets custom values set by the client application
* <p>
* This map is mutable (and not thread-safe if mutated)
* </p>
*/
public Map<String, String> getCustom();
Map<String, String> getCustom();

/**
* Gets environment information provided by mobile SDK, immutable.
*
*/
public Map<String, String> getEnvironment();
Map<String, String> getEnvironment();

}
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ public interface CognitoIdentity {
* Gets the Amazon Cognito identity ID
*
*/
public String getIdentityId();
String getIdentityId();

/**
* Gets the Amazon Cognito identity pool ID
*
*/
public String getIdentityPoolId();
String getIdentityPoolId();
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ public interface LambdaLogger {
*
* @param message A string containing the event to log.
*/
public void log(String message);
void log(String message);

/**
* Logs a byte array to AWS CloudWatch Logs
* @param message byte array containing logs
*/
public void log(byte[] message);
void log(byte[] message);
}

Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ public interface RequestHandler<I, O> {
* @param context The Lambda execution environment context object.
* @return The Lambda Function output
*/
public O handleRequest(I input, Context context);
O handleRequest(I input, Context context);
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ public interface RequestStreamHandler {
* @param context The Lambda execution environment context object.
* @throws IOException
*/
public void handleRequest(InputStream input, OutputStream output, Context context) throws IOException;
void handleRequest(InputStream input, OutputStream output, Context context) throws IOException;
}