You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2017/01/25 23:47:56 UTC

calcite git commit: Oops! Javadoc

Repository: calcite
Updated Branches:
  refs/heads/master 5181563f9 -> bc40bc06a


Oops! Javadoc


Project: http://git-wip-us.apache.org/repos/asf/calcite/repo
Commit: http://git-wip-us.apache.org/repos/asf/calcite/commit/bc40bc06
Tree: http://git-wip-us.apache.org/repos/asf/calcite/tree/bc40bc06
Diff: http://git-wip-us.apache.org/repos/asf/calcite/diff/bc40bc06

Branch: refs/heads/master
Commit: bc40bc06a1331394c95673034bedbb46f908fb13
Parents: 5181563
Author: Julian Hyde <jh...@apache.org>
Authored: Wed Jan 25 15:46:36 2017 -0800
Committer: Julian Hyde <jh...@apache.org>
Committed: Wed Jan 25 15:46:36 2017 -0800

----------------------------------------------------------------------
 core/src/main/java/org/apache/calcite/util/Util.java | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/calcite/blob/bc40bc06/core/src/main/java/org/apache/calcite/util/Util.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/calcite/util/Util.java b/core/src/main/java/org/apache/calcite/util/Util.java
index 9e011be..8d85ad9 100644
--- a/core/src/main/java/org/apache/calcite/util/Util.java
+++ b/core/src/main/java/org/apache/calcite/util/Util.java
@@ -802,8 +802,9 @@ public class Util {
     return new AssertionError("Internal error: " + s, e);
   }
 
-  /** As {@link Throwables#throwIfUnchecked(Throwable)}, but we don't require
-   * Guava version 20 yet. */
+  /** As {@link Throwables}{@code .throwIfUnchecked(Throwable)},
+   * which was introduced in Guava 20,
+   * but we don't require Guava version 20 yet. */
   public static void throwIfUnchecked(Throwable throwable) {
     Bug.upgrade("Remove when minimum Guava version is 20");
     checkNotNull(throwable);