yifan-c commented on code in PR #71:
URL:
https://github.com/apache/cassandra-analytics/pull/71#discussion_r1737138827
##########
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:
Not a blocker. Just want to avoid any confusion. As long as they are used in
the context of "type" only, it is good.
--
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]