-
Notifications
You must be signed in to change notification settings - Fork 10.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Log a warning if running under a Java 7 VM.
More precisely, log a warning if lambda expressions or type annotations in our classes would produce an exception. If someone wants to use Retrolambda or a similar tool to rewrite our classes, that's fine with us if it works. And our support for Android is unchanged: The Android toolchain rewrites lambdas and removes type annotations. This is a step toward removing Java 7 support entirely: #5269 RELNOTES=Introduced a warning log message when running under Java 7. This warning is not _guaranteed_ to be logged when running under Java 7, so please don't rely on it as your only warning about future problems. If the warning _itself_ causes you trouble, you can eliminate it by silencing the logger for `com.google.common.base.MoreObjects$ToStringHelper` (which is used _only_ for this warning). This warning prepares for [removing support for Java 7 in 2021](#5269). Please report any problems. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=346795766
- Loading branch information
Showing
8 changed files
with
254 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright (C) 2020 The Guava Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.common.base; | ||
|
||
import com.google.errorprone.annotations.CanIgnoreReturnValue; | ||
|
||
/** | ||
* A class that uses a couple Java 8 features but doesn't really do anything. This lets us attempt | ||
* to load it and log a warning if that fails, giving users advance notice of our dropping Java 8 | ||
* support. | ||
*/ | ||
/* | ||
* This class should be annotated @GwtCompatible. But if we annotate it @GwtCompatible, then we need | ||
* to build GwtCompatible.java (-source 7 -target 7 in the Android flavor) before we build | ||
* Java8Usage.java (-source 8 target 8, which we already need to build before the rest of | ||
* common.base). We could configure Maven to do that, but it's easier to just skip the annotation. | ||
*/ | ||
final class Java8Usage { | ||
@java.lang.annotation.Target(java.lang.annotation.ElementType.TYPE_USE) | ||
@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) | ||
private @interface SomeTypeAnnotation {} | ||
|
||
@CanIgnoreReturnValue | ||
static @SomeTypeAnnotation String performCheck() { | ||
Runnable r = () -> {}; | ||
r.run(); | ||
return ""; | ||
} | ||
|
||
private Java8Usage() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright (C) 2020 The Guava Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.common.base; | ||
|
||
import com.google.errorprone.annotations.CanIgnoreReturnValue; | ||
|
||
/** | ||
* A class that uses a couple Java 8 features but doesn't really do anything. This lets us attempt | ||
* to load it and log a warning if that fails, giving users advance notice of our dropping Java 8 | ||
* support. | ||
*/ | ||
/* | ||
* This class should be annotated @GwtCompatible. But if we annotate it @GwtCompatible, then we need | ||
* to build GwtCompatible.java (-source 7 -target 7 in the Android flavor) before we build | ||
* Java8Usage.java (-source 8 target 8, which we already need to build before the rest of | ||
* common.base). We could configure Maven to do that, but it's easier to just skip the annotation. | ||
*/ | ||
final class Java8Usage { | ||
@java.lang.annotation.Target(java.lang.annotation.ElementType.TYPE_USE) | ||
@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) | ||
private @interface SomeTypeAnnotation {} | ||
|
||
@CanIgnoreReturnValue | ||
static @SomeTypeAnnotation String performCheck() { | ||
Runnable r = () -> {}; | ||
r.run(); | ||
return ""; | ||
} | ||
|
||
private Java8Usage() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters