Skip to content

Commit 0ce688d

Browse files
committed
Automated g4 rollback of changelist 239207045
PiperOrigin-RevId: 239229246
1 parent efc7f37 commit 0ce688d

File tree

5 files changed

+4
-305
lines changed

5 files changed

+4
-305
lines changed

build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ ext {
3535
recyclerViewSelection : '1.1.0-alpha01',
3636
transition : '1.0.1',
3737
vectorDrawable : '1.1.0-alpha01',
38-
viewpager2 : '1.0.0-alpha02',
3938
]
4039

4140
testRunnerVersion = '1.1.0'
@@ -110,8 +109,6 @@ def compatibility(name) {
110109
return "androidx.vectordrawable:vectordrawable:${androidXVersions.vectorDrawable}"
111110
case "recyclerViewSelection":
112111
return "androidx.recyclerview:recyclerview-selection:${androidXVersions.recyclerViewSelection}"
113-
case "viewpager2":
114-
return "androidx.viewpager2:viewpager2:${androidXVersions.viewpager2}"
115112
default:
116113
throw new IllegalArgumentException("No mapping exists for name: $name.")
117114
}

lib/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ dependencies {
1616
api compatibility("recyclerview")
1717
api compatibility("transition")
1818
api compatibility("vectordrawable")
19-
api compatibility("viewpager2")
2019

2120
testImplementation "androidx.test:core:${project.rootProject.ext.testRunnerVersion}"
2221
testImplementation "androidx.test:runner:${project.rootProject.ext.testRunnerVersion}"

lib/java/com/google/android/material/tabs/TabLayout.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,19 +218,19 @@ public class TabLayout extends HorizontalScrollView {
218218
public @interface Mode {}
219219

220220
/**
221-
* If a tab is instantiated with {@link Tab#setText(CharSequence)}, and this mode is set,
221+
* If a tab is instantiated with {@link TabLayout#setText(CharSequence)}, and this mode is set,
222222
* the text will be saved and utilized for the content description, but no visible labels will be
223223
* created.
224224
*
225-
* @see Tab#setTabLabelVisibility(int)
225+
* @see #setTabLabelVisibility(int)
226226
*/
227227
public static final int TAB_LABEL_VISIBILITY_UNLABELED = 0;
228228

229229
/**
230230
* This mode is set by default. If a tab is instantiated with {@link
231-
* Tab#setText(CharSequence)}, a visible label will be created.
231+
* TabLayout#setText(CharSequence)}, a visible label will be created.
232232
*
233-
* @see Tab#setTabLabelVisibility(int)
233+
* @see #setTabLabelVisibility(int)
234234
*/
235235
public static final int TAB_LABEL_VISIBILITY_LABELED = 1;
236236

lib/java/com/google/android/material/tabs/TabLayoutMediator.java

Lines changed: 0 additions & 296 deletions
This file was deleted.

lib/java/com/google/android/material/tabs/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ dependencies {
99
implementation compatibility("appcompat")
1010
implementation compatibility("core")
1111
implementation compatibility("core_ui")
12-
implementation compatibility("viewpager2")
1312

1413
implementation project(fromPath("lib/java/com/google/android/material/animation"))
1514
implementation project(fromPath("lib/java/com/google/android/material/internal"))

0 commit comments

Comments
 (0)