Skip to content

Commit

Permalink
Java: Moving CircularOutputStream to another package (it's an interna…
Browse files Browse the repository at this point in the history
…l class so no need to create a copy)
  • Loading branch information
barancev committed Jan 28, 2016
1 parent 7130de4 commit 976b5e9
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.os.CommandLine;
import org.openqa.selenium.os.WindowsUtils;
import org.openqa.selenium.remote.internal.CircularOutputStream;
import org.openqa.selenium.io.CircularOutputStream;

import java.io.File;
import java.io.OutputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import org.openqa.selenium.remote.Command;
import org.openqa.selenium.remote.HttpCommandExecutor;
import org.openqa.selenium.remote.Response;
import org.openqa.selenium.remote.internal.CircularOutputStream;
import org.openqa.selenium.io.CircularOutputStream;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package org.openqa.selenium.firefox.internal;

import org.openqa.selenium.remote.internal.CircularOutputStream;
import org.openqa.selenium.io.CircularOutputStream;

import java.io.OutputStream;

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.remote.internal;
package org.openqa.selenium.io;

import java.io.File;
import java.io.FileNotFoundException;
Expand Down
1 change: 0 additions & 1 deletion java/client/src/org/openqa/selenium/remote/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ java_library(name = 'remote',
'http/JsonHttpCommandCodec.java',
'http/JsonHttpResponseCodec.java',
'internal/ApacheHttpClient.java',
'internal/CircularOutputStream.java',
'internal/HttpClientFactory.java',
'internal/JsonToWebElementConverter.java',
'internal/WebElementToJsonConverter.java',
Expand Down
1 change: 0 additions & 1 deletion java/client/src/org/openqa/selenium/remote/build.desc
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ java_library(name = "remote",
"http/JsonHttpCommandCodec.java",
"http/JsonHttpResponseCodec.java",
"internal/ApacheHttpClient.java",
"internal/CircularOutputStream.java",
"internal/JsonToWebElementConverter.java",
"internal/HttpClientFactory.java",
"internal/WebElementToJsonConverter.java",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;

import org.openqa.selenium.remote.internal.CircularOutputStream;
import org.openqa.selenium.io.CircularOutputStream;

import org.junit.Test;
import org.junit.runner.RunWith;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import org.openqa.selenium.io.CircularOutputStream;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
Expand Down

0 comments on commit 976b5e9

Please sign in to comment.