jberragan commented on code in PR #71:
URL:
https://github.com/apache/cassandra-analytics/pull/71#discussion_r1721429729
##########
cassandra-analytics-common/src/main/java/org/apache/cassandra/spark/data/CqlField.java:
##########
@@ -473,6 +462,11 @@ public void write(Kryo kryo, Output output, CqlField field)
public static UnsupportedOperationException notImplemented(CqlType type)
{
- return new UnsupportedOperationException(type.toString() + " type not
implemented");
+ return notImplemented(type.toString());
+ }
+
+ public static UnsupportedOperationException notImplemented(String type)
+ {
+ return new UnsupportedOperationException(type + " type not
implemented");
}
Review Comment:
It is used in `NotImplementedTraits` and some tests which is why it is
`public`, I can re-work if it's a blocker.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]