Skip to content

Commit

Permalink
Update the since tag to 1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-fgonzalezmendez committed Sep 4, 2024
1 parent 35fdfa7 commit c8ebed8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/snowflake/snowpark_java/Row.java
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ public Row getObject(int index) {
* @return the value at the specified column index cast to type {@code T}.
* @throws ClassCastException if the value at the given index cannot be cast to type {@code T}.
* @throws ArrayIndexOutOfBoundsException if the column index is out of bounds.
* @since 1.14.0
* @since 1.15.0
*/
@SuppressWarnings("unchecked")
public <T> T getAs(int index, Class<T> clazz)
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/snowflake/snowpark/Row.scala
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ class Row protected (values: Array[Any]) extends Serializable {
* @throws ClassCastException if the value at the given index cannot be cast to type `T`.
* @throws ArrayIndexOutOfBoundsException if the column index is out of bounds.
* @group getter
* @since 1.14.0
* @since 1.15.0
*/
def getAs[T](index: Int)(implicit classTag: ClassTag[T]): T = {
classTag.runtimeClass match {
Expand Down

0 comments on commit c8ebed8

Please sign in to comment.