Repository: cassandra Updated Branches: refs/heads/trunk 485c23d29 -> 6f5e8358d
Ninja fix: remove unecessary ';' Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/6f5e8358 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/6f5e8358 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/6f5e8358 Branch: refs/heads/trunk Commit: 6f5e8358d7d43850e5b0c65d1e4a16a0403ea765 Parents: 485c23d Author: Benjamin Lerer <[email protected]> Authored: Thu Dec 10 21:38:54 2015 +0100 Committer: Benjamin Lerer <[email protected]> Committed: Thu Dec 10 21:38:54 2015 +0100 ---------------------------------------------------------------------- .../org/apache/cassandra/cql3/functions/CastFcts.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/6f5e8358/src/java/org/apache/cassandra/cql3/functions/CastFcts.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/cql3/functions/CastFcts.java b/src/java/org/apache/cassandra/cql3/functions/CastFcts.java index 800ff65..8669225 100644 --- a/src/java/org/apache/cassandra/cql3/functions/CastFcts.java +++ b/src/java/org/apache/cassandra/cql3/functions/CastFcts.java @@ -194,7 +194,7 @@ public final class CastFcts { return (AbstractType<I>) argTypes.get(0); } - }; + } /** * <code>CastFunction</code> that implements casting by wrapping a java <code>Function</code>. @@ -237,7 +237,7 @@ public final class CastFcts { return inputType().compose(bb); } - }; + } /** * <code>JavaFunctionWrapper</code> for counter columns. @@ -265,7 +265,7 @@ public final class CastFcts { return LongType.instance.compose(bb); } - }; + } /** * <code>CastFunction</code> that implements casting by wrapping an existing <code>NativeScalarFunction</code>. @@ -301,7 +301,7 @@ public final class CastFcts { return delegate.execute(protocolVersion, parameters); } - }; + } /** * <code>CastFunction</code> that can be used to cast a type into ascii or text types. @@ -333,7 +333,7 @@ public final class CastFcts inputType().getSerializer().toCQLLiteral(bb, builder); return outputType().decompose(builder.toString()); } - }; + } /** * The class must not be instantiated as it contains only static variables.
