Skip to content

Commit

Permalink
[java] Moving (firefox) Executable out of internal package to the mai…
Browse files Browse the repository at this point in the history
…n one, but making it package private
  • Loading branch information
barancev committed Nov 2, 2018
1 parent 1220214 commit 1c3a037
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@
// specific language governing permissions and limitations
// under the License.

package org.openqa.selenium.firefox.internal;
package org.openqa.selenium.firefox;

import com.google.common.base.Preconditions;

import org.openqa.selenium.Platform;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.firefox.FirefoxBinary;

import java.io.BufferedReader;
import java.io.File;
Expand All @@ -32,11 +31,8 @@

/**
* Wrapper around Firefox executable.
*
* @deprecated Internal class. Visibility will be reduced and won't be exported from module.
*/
@Deprecated
public class Executable {
class Executable {

private final File binary;
private String version;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

import org.openqa.selenium.Platform;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.firefox.internal.Executable;
import org.openqa.selenium.io.FileHandler;
import org.openqa.selenium.os.CommandLine;
import org.openqa.selenium.os.ExecutableFinder;
Expand Down

0 comments on commit 1c3a037

Please sign in to comment.