Skip to content

Commit 82c5a11

Browse files
committed
Remove unnecessary public keyword from interfaces. No logical changes
1 parent c62dbf9 commit 82c5a11

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

java/src/org/openqa/selenium/chromium/HasLaunchApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ public interface HasLaunchApp {
2929
*
3030
* @param id which Chromium app to launch.
3131
*/
32-
public void launchApp(String id);
32+
void launchApp(String id);
3333
}

java/src/org/openqa/selenium/chromium/HasPermissions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ public interface HasPermissions {
3030
* @param name what item to set the permission on.
3131
* @param value what to set the permission to.
3232
*/
33-
public void setPermission(String name, String value);
33+
void setPermission(String name, String value);
3434
}

java/src/org/openqa/selenium/firefox/HasFullPageScreenshot.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ public interface HasFullPageScreenshot {
3232
* @param outputType target type, @see OutputType
3333
* @return Object in which is stored information about the screenshot.
3434
*/
35-
public <X> X getFullPageScreenshotAs(OutputType<X> outputType);
35+
<X> X getFullPageScreenshotAs(OutputType<X> outputType);
3636
}

0 commit comments

Comments
 (0)