Skip to content

Commit

Permalink
Remove unnecessary public keyword from interfaces. No logical changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Sep 28, 2021
1 parent c62dbf9 commit 82c5a11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion java/src/org/openqa/selenium/chromium/HasLaunchApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ public interface HasLaunchApp {
*
* @param id which Chromium app to launch.
*/
public void launchApp(String id);
void launchApp(String id);
}
2 changes: 1 addition & 1 deletion java/src/org/openqa/selenium/chromium/HasPermissions.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ public interface HasPermissions {
* @param name what item to set the permission on.
* @param value what to set the permission to.
*/
public void setPermission(String name, String value);
void setPermission(String name, String value);
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ public interface HasFullPageScreenshot {
* @param outputType target type, @see OutputType
* @return Object in which is stored information about the screenshot.
*/
public <X> X getFullPageScreenshotAs(OutputType<X> outputType);
<X> X getFullPageScreenshotAs(OutputType<X> outputType);
}

0 comments on commit 82c5a11

Please sign in to comment.