Skip to content

Commit

Permalink
Update src/main/java/com/nvidia/spark/rapids/jni/ParseURI.java
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Lowe <[email protected]>
  • Loading branch information
hyperbolic2346 and jlowe authored Oct 17, 2023
1 parent 463317e commit 3a9dce3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/nvidia/spark/rapids/jni/ParseURI.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ public class ParseURI {
* @param URIColumn The input strings column in which each row contains a URI.
* @return A string column with protocol data extracted.
*/
public static ColumnVector parseURIProtocol(ColumnView URIColumn) {
assert URIColumn.getType().equals(DType.STRING) : "Input type must be String";
return new ColumnVector(parseProtocol(URIColumn.getNativeView()));
public static ColumnVector parseURIProtocol(ColumnView uriColumn) {
assert uriColumn.getType().equals(DType.STRING) : "Input type must be String";
return new ColumnVector(parseProtocol(uriColumn.getNativeView()));
}


Expand Down

0 comments on commit 3a9dce3

Please sign in to comment.