Skip to content

Commit 6371010

Browse files
committed
Merge pull request ReactiveX#89 from novoda/updating_framework_to_conventions
Updating packages and headers to match new convention
2 parents ae556b7 + 60bc8ce commit 6371010

File tree

4 files changed

+9
-17
lines changed

4 files changed

+9
-17
lines changed

rxandroid-framework/src/main/java/rx/android/observables/ReactiveDialog.java renamed to rxandroid-framework/src/main/java/rx/android/app/ReactiveDialog.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
/**
2-
* Copyright 2014 Novoda, Inc.
3-
*
42
* Licensed under the Apache License, Version 2.0 (the "License");
53
* you may not use this file except in compliance with the License.
64
* You may obtain a copy of the License at
75
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
6+
* http://www.apache.org/licenses/LICENSE-2.0
97
*
108
* Unless required by applicable law or agreed to in writing, software
119
* distributed under the License is distributed on an "AS IS" BASIS,
1210
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1311
* See the License for the specific language governing permissions and
1412
* limitations under the License.
1513
*/
16-
package rx.android.observables;
14+
package rx.android.app;
1715

1816
import android.app.DialogFragment;
1917
import android.app.FragmentManager;

rxandroid-framework/src/main/java/rx/android/observables/SubscriberVault.java renamed to rxandroid-framework/src/main/java/rx/android/app/SubscriberVault.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
/**
2-
* Copyright 2014 Novoda, Inc.
3-
*
42
* Licensed under the Apache License, Version 2.0 (the "License");
53
* you may not use this file except in compliance with the License.
64
* You may obtain a copy of the License at
75
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
6+
* http://www.apache.org/licenses/LICENSE-2.0
97
*
108
* Unless required by applicable law or agreed to in writing, software
119
* distributed under the License is distributed on an "AS IS" BASIS,
1210
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1311
* See the License for the specific language governing permissions and
1412
* limitations under the License.
1513
*/
16-
package rx.android.observables;
14+
package rx.android.app;
1715

1816
import java.util.HashMap;
1917
import java.util.Map;
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
/**
2-
* Copyright 2014 Novoda, Inc.
3-
*
42
* Licensed under the Apache License, Version 2.0 (the "License");
53
* you may not use this file except in compliance with the License.
64
* You may obtain a copy of the License at
75
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
6+
* http://www.apache.org/licenses/LICENSE-2.0
97
*
108
* Unless required by applicable law or agreed to in writing, software
119
* distributed under the License is distributed on an "AS IS" BASIS,
1210
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1311
* See the License for the specific language governing permissions and
1412
* limitations under the License.
1513
*/
16-
package rx.android.observables;
14+
package rx.android.app;
1715

1816
import android.app.Activity;
1917
import android.app.FragmentManager;
@@ -38,7 +36,7 @@
3836
import static org.mockito.Mockito.never;
3937
import static org.mockito.Mockito.verify;
4038
import static org.mockito.MockitoAnnotations.initMocks;
41-
import static rx.android.observables.ReactiveDialog.Result;
39+
import static rx.android.app.ReactiveDialog.Result;
4240

4341
@RunWith(RobolectricTestRunner.class)
4442
public class ReactiveDialogTest {
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
/**
2-
* Copyright 2014 Novoda, Inc.
3-
*
42
* Licensed under the Apache License, Version 2.0 (the "License");
53
* you may not use this file except in compliance with the License.
64
* You may obtain a copy of the License at
75
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
6+
* http://www.apache.org/licenses/LICENSE-2.0
97
*
108
* Unless required by applicable law or agreed to in writing, software
119
* distributed under the License is distributed on an "AS IS" BASIS,
1210
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1311
* See the License for the specific language governing permissions and
1412
* limitations under the License.
1513
*/
16-
package rx.android.observables;
14+
package rx.android.app;
1715

1816
import org.junit.Before;
1917
import org.junit.Test;

0 commit comments

Comments
 (0)