Skip to content

Commit

Permalink
[java] Renaming a package to match Java naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Oct 16, 2019
1 parent 7ac1b7c commit 5b5f9b0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

package org.openqa.selenium.devtools.applicationCache;
package org.openqa.selenium.devtools.applicationcache;

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

Expand All @@ -24,9 +24,9 @@

import org.openqa.selenium.devtools.Command;
import org.openqa.selenium.devtools.Event;
import org.openqa.selenium.devtools.applicationCache.model.ApplicationCacheModel;
import org.openqa.selenium.devtools.applicationCache.model.ApplicationCacheStatusUpdated;
import org.openqa.selenium.devtools.applicationCache.model.FrameWithManifest;
import org.openqa.selenium.devtools.applicationcache.model.ApplicationCacheModel;
import org.openqa.selenium.devtools.applicationcache.model.ApplicationCacheStatusUpdated;
import org.openqa.selenium.devtools.applicationcache.model.FrameWithManifest;
import org.openqa.selenium.devtools.page.model.FrameId;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package org.openqa.selenium.devtools.applicationCache.model;
package org.openqa.selenium.devtools.applicationcache.model;

import org.openqa.selenium.devtools.DevToolsException;
import org.openqa.selenium.json.JsonInput;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package org.openqa.selenium.devtools.applicationCache.model;
package org.openqa.selenium.devtools.applicationcache.model;

import org.openqa.selenium.json.JsonInput;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

package org.openqa.selenium.devtools.applicationCache.model;
package org.openqa.selenium.devtools.applicationcache.model;

import org.openqa.selenium.devtools.page.model.FrameId;
import org.openqa.selenium.json.JsonInput;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

package org.openqa.selenium.devtools.applicationCache.model;
package org.openqa.selenium.devtools.applicationcache.model;

import org.openqa.selenium.devtools.page.model.FrameId;
import org.openqa.selenium.json.JsonInput;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import org.junit.Assert;
import org.junit.Test;
import org.openqa.selenium.devtools.applicationCache.ApplicationCache;
import org.openqa.selenium.devtools.applicationCache.model.FrameWithManifest;
import org.openqa.selenium.devtools.applicationcache.ApplicationCache;
import org.openqa.selenium.devtools.applicationcache.model.FrameWithManifest;

import java.util.List;

Expand Down

0 comments on commit 5b5f9b0

Please sign in to comment.