Skip to content

Commit 5b5f9b0

Browse files
committed
[java] Renaming a package to match Java naming convention
1 parent 7ac1b7c commit 5b5f9b0

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

java/client/src/org/openqa/selenium/devtools/applicationCache/ApplicationCache.java renamed to java/client/src/org/openqa/selenium/devtools/applicationcache/ApplicationCache.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
package org.openqa.selenium.devtools.applicationCache;
18+
package org.openqa.selenium.devtools.applicationcache;
1919

2020
import static org.openqa.selenium.devtools.ConverterFunctions.map;
2121

@@ -24,9 +24,9 @@
2424

2525
import org.openqa.selenium.devtools.Command;
2626
import org.openqa.selenium.devtools.Event;
27-
import org.openqa.selenium.devtools.applicationCache.model.ApplicationCacheModel;
28-
import org.openqa.selenium.devtools.applicationCache.model.ApplicationCacheStatusUpdated;
29-
import org.openqa.selenium.devtools.applicationCache.model.FrameWithManifest;
27+
import org.openqa.selenium.devtools.applicationcache.model.ApplicationCacheModel;
28+
import org.openqa.selenium.devtools.applicationcache.model.ApplicationCacheStatusUpdated;
29+
import org.openqa.selenium.devtools.applicationcache.model.FrameWithManifest;
3030
import org.openqa.selenium.devtools.page.model.FrameId;
3131

3232
import java.util.List;

java/client/src/org/openqa/selenium/devtools/applicationCache/model/ApplicationCacheModel.java renamed to java/client/src/org/openqa/selenium/devtools/applicationcache/model/ApplicationCacheModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
package org.openqa.selenium.devtools.applicationCache.model;
17+
package org.openqa.selenium.devtools.applicationcache.model;
1818

1919
import org.openqa.selenium.devtools.DevToolsException;
2020
import org.openqa.selenium.json.JsonInput;

java/client/src/org/openqa/selenium/devtools/applicationCache/model/ApplicationCacheResource.java renamed to java/client/src/org/openqa/selenium/devtools/applicationcache/model/ApplicationCacheResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
package org.openqa.selenium.devtools.applicationCache.model;
17+
package org.openqa.selenium.devtools.applicationcache.model;
1818

1919
import org.openqa.selenium.json.JsonInput;
2020

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
package org.openqa.selenium.devtools.applicationCache.model;
18+
package org.openqa.selenium.devtools.applicationcache.model;
1919

2020
import org.openqa.selenium.devtools.page.model.FrameId;
2121
import org.openqa.selenium.json.JsonInput;

java/client/src/org/openqa/selenium/devtools/applicationCache/model/FrameWithManifest.java renamed to java/client/src/org/openqa/selenium/devtools/applicationcache/model/FrameWithManifest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
package org.openqa.selenium.devtools.applicationCache.model;
18+
package org.openqa.selenium.devtools.applicationcache.model;
1919

2020
import org.openqa.selenium.devtools.page.model.FrameId;
2121
import org.openqa.selenium.json.JsonInput;

java/client/test/org/openqa/selenium/devtools/ChromeDevToolsApplicationCacheTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import org.junit.Assert;
44
import org.junit.Test;
5-
import org.openqa.selenium.devtools.applicationCache.ApplicationCache;
6-
import org.openqa.selenium.devtools.applicationCache.model.FrameWithManifest;
5+
import org.openqa.selenium.devtools.applicationcache.ApplicationCache;
6+
import org.openqa.selenium.devtools.applicationcache.model.FrameWithManifest;
77

88
import java.util.List;
99

0 commit comments

Comments
 (0)