aboutsummaryrefslogtreecommitdiff
path: root/guava/src/com/google/common/base/Platform.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/base/Platform.java')
-rw-r--r--guava/src/com/google/common/base/Platform.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/guava/src/com/google/common/base/Platform.java b/guava/src/com/google/common/base/Platform.java
index 644e89cbf..e24df7c7d 100644
--- a/guava/src/com/google/common/base/Platform.java
+++ b/guava/src/com/google/common/base/Platform.java
@@ -36,12 +36,6 @@ final class Platform {
private Platform() {}
- /** Calls {@link System#nanoTime()}. */
- @SuppressWarnings("GoodTime") // reading system time without TimeSource
- static long systemNanoTime() {
- return System.nanoTime();
- }
-
static CharMatcher precomputeCharMatcher(CharMatcher matcher) {
return matcher.precomputedInternal();
}
@@ -108,25 +102,4 @@ final class Platform {
return true;
}
}
-
- static void checkGwtRpcEnabled() {
- String propertyName = "guava.gwt.emergency_reenable_rpc";
-
- if (!Boolean.parseBoolean(System.getProperty(propertyName, "false"))) {
- throw new UnsupportedOperationException(
- Strings.lenientFormat(
- "We are removing GWT-RPC support for Guava types. You can temporarily reenable"
- + " support by setting the system property %s to true. For more about system"
- + " properties, see %s. For more about Guava's GWT-RPC support, see %s.",
- propertyName,
- "https://stackoverflow.com/q/5189914/28465",
- "https://groups.google.com/d/msg/guava-announce/zHZTFg7YF3o/rQNnwdHeEwAJ"));
- }
- logger.log(
- java.util.logging.Level.WARNING,
- "Later in 2020, we will remove GWT-RPC support for Guava types. You are seeing this"
- + " warning because you are sending a Guava type over GWT-RPC, which will break. You"
- + " can identify which type by looking at the class name in the attached stack trace.",
- new Throwable());
- }
}