File tree 8 files changed +0
-12
lines changed
android/guava/src/com/google/common/primitives
guava/src/com/google/common/primitives
8 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -753,7 +753,6 @@ public String toString() {
753
753
* @throws NullPointerException if {@code string} is {@code null}
754
754
* @since 14.0
755
755
*/
756
- @ Beta
757
756
@ GwtIncompatible // regular expressions
758
757
@ CheckForNull
759
758
public static Double tryParse (String string ) {
Original file line number Diff line number Diff line change @@ -712,7 +712,6 @@ float[] toFloatArray() {
712
712
* @throws NullPointerException if {@code string} is {@code null}
713
713
* @since 14.0
714
714
*/
715
- @ Beta
716
715
@ GwtIncompatible // regular expressions
717
716
@ CheckForNull
718
717
public static Float tryParse (String string ) {
Original file line number Diff line number Diff line change @@ -784,7 +784,6 @@ int[] toIntArray() {
784
784
* @throws NullPointerException if {@code string} is {@code null}
785
785
* @since 11.0
786
786
*/
787
- @ Beta
788
787
@ CheckForNull
789
788
public static Integer tryParse (String string ) {
790
789
return tryParse (string , 10 );
@@ -810,7 +809,6 @@ public static Integer tryParse(String string) {
810
809
* @throws NullPointerException if {@code string} is {@code null}
811
810
* @since 19.0
812
811
*/
813
- @ Beta
814
812
@ CheckForNull
815
813
public static Integer tryParse (String string , int radix ) {
816
814
Long result = Longs .tryParse (string , radix );
Original file line number Diff line number Diff line change @@ -361,7 +361,6 @@ static int digit(char c) {
361
361
* @throws NullPointerException if {@code string} is {@code null}
362
362
* @since 14.0
363
363
*/
364
- @ Beta
365
364
@ CheckForNull
366
365
public static Long tryParse (String string ) {
367
366
return tryParse (string , 10 );
@@ -387,7 +386,6 @@ public static Long tryParse(String string) {
387
386
* @throws NullPointerException if {@code string} is {@code null}
388
387
* @since 19.0
389
388
*/
390
- @ Beta
391
389
@ CheckForNull
392
390
public static Long tryParse (String string , int radix ) {
393
391
if (checkNotNull (string ).isEmpty ()) {
Original file line number Diff line number Diff line change @@ -760,7 +760,6 @@ public String toString() {
760
760
* @throws NullPointerException if {@code string} is {@code null}
761
761
* @since 14.0
762
762
*/
763
- @ Beta
764
763
@ GwtIncompatible // regular expressions
765
764
@ CheckForNull
766
765
public static Double tryParse (String string ) {
Original file line number Diff line number Diff line change @@ -712,7 +712,6 @@ float[] toFloatArray() {
712
712
* @throws NullPointerException if {@code string} is {@code null}
713
713
* @since 14.0
714
714
*/
715
- @ Beta
716
715
@ GwtIncompatible // regular expressions
717
716
@ CheckForNull
718
717
public static Float tryParse (String string ) {
Original file line number Diff line number Diff line change @@ -791,7 +791,6 @@ int[] toIntArray() {
791
791
* @throws NullPointerException if {@code string} is {@code null}
792
792
* @since 11.0
793
793
*/
794
- @ Beta
795
794
@ CheckForNull
796
795
public static Integer tryParse (String string ) {
797
796
return tryParse (string , 10 );
@@ -817,7 +816,6 @@ public static Integer tryParse(String string) {
817
816
* @throws NullPointerException if {@code string} is {@code null}
818
817
* @since 19.0
819
818
*/
820
- @ Beta
821
819
@ CheckForNull
822
820
public static Integer tryParse (String string , int radix ) {
823
821
Long result = Longs .tryParse (string , radix );
Original file line number Diff line number Diff line change @@ -363,7 +363,6 @@ static int digit(char c) {
363
363
* @throws NullPointerException if {@code string} is {@code null}
364
364
* @since 14.0
365
365
*/
366
- @ Beta
367
366
@ CheckForNull
368
367
public static Long tryParse (String string ) {
369
368
return tryParse (string , 10 );
@@ -389,7 +388,6 @@ public static Long tryParse(String string) {
389
388
* @throws NullPointerException if {@code string} is {@code null}
390
389
* @since 19.0
391
390
*/
392
- @ Beta
393
391
@ CheckForNull
394
392
public static Long tryParse (String string , int radix ) {
395
393
if (checkNotNull (string ).isEmpty ()) {
You can’t perform that action at this time.
0 commit comments