Skip to content

Commit 1c3a037

Browse files
committed
[java] Moving (firefox) Executable out of internal package to the main one, but making it package private
1 parent 1220214 commit 1c3a037

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

java/client/src/org/openqa/selenium/firefox/internal/Executable.java renamed to java/client/src/org/openqa/selenium/firefox/Executable.java

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

18-
package org.openqa.selenium.firefox.internal;
18+
package org.openqa.selenium.firefox;
1919

2020
import com.google.common.base.Preconditions;
2121

2222
import org.openqa.selenium.Platform;
2323
import org.openqa.selenium.WebDriverException;
24-
import org.openqa.selenium.firefox.FirefoxBinary;
2524

2625
import java.io.BufferedReader;
2726
import java.io.File;
@@ -32,11 +31,8 @@
3231

3332
/**
3433
* Wrapper around Firefox executable.
35-
*
36-
* @deprecated Internal class. Visibility will be reduced and won't be exported from module.
3734
*/
38-
@Deprecated
39-
public class Executable {
35+
class Executable {
4036

4137
private final File binary;
4238
private String version;

java/client/src/org/openqa/selenium/firefox/FirefoxBinary.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929

3030
import org.openqa.selenium.Platform;
3131
import org.openqa.selenium.WebDriverException;
32-
import org.openqa.selenium.firefox.internal.Executable;
3332
import org.openqa.selenium.io.FileHandler;
3433
import org.openqa.selenium.os.CommandLine;
3534
import org.openqa.selenium.os.ExecutableFinder;

0 commit comments

Comments
 (0)