Skip to content

Commit

Permalink
Rename okhttp3.internal.sse to okhttp3.sse.internal (square#6284)
Browse files Browse the repository at this point in the history
I think this is slightly neater from an OSGi/JPMS perspective.
  • Loading branch information
swankjesse authored Oct 2, 2020
1 parent 480c20e commit 334eb00
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion okhttp-sse/src/main/kotlin/okhttp3/sse/EventSources.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package okhttp3.sse

import okhttp3.OkHttpClient
import okhttp3.Response
import okhttp3.internal.sse.RealEventSource
import okhttp3.sse.internal.RealEventSource

object EventSources {
@JvmStatic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package okhttp3.internal.sse
package okhttp3.sse.internal

import java.io.IOException
import okhttp3.Call
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package okhttp3.internal.sse
package okhttp3.sse.internal

import java.io.IOException
import okhttp3.internal.toLongOrDefault
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package okhttp3.internal.sse;
package okhttp3.sse.internal;

import java.util.Objects;
import javax.annotation.Nullable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package okhttp3.internal.sse;
package okhttp3.sse.internal;

import java.util.concurrent.TimeUnit;
import javax.annotation.Nullable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package okhttp3.internal.sse;
package okhttp3.sse.internal;

import java.io.IOException;
import java.util.concurrent.BlockingQueue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package okhttp3.internal.sse;
package okhttp3.sse.internal;

import java.io.IOException;
import java.util.ArrayDeque;
Expand Down

0 comments on commit 334eb00

Please sign in to comment.