From 5e1e689739a9d99edcca0166267c5cae3a14507c Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 17 Mar 2020 15:05:36 +0100 Subject: [PATCH] Polishing --- .../java/org/springframework/jdbc/core/SqlReturnType.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-jdbc/src/main/java/org/springframework/jdbc/core/SqlReturnType.java b/spring-jdbc/src/main/java/org/springframework/jdbc/core/SqlReturnType.java index 6755721d938..f2558c66911 100644 --- a/spring-jdbc/src/main/java/org/springframework/jdbc/core/SqlReturnType.java +++ b/spring-jdbc/src/main/java/org/springframework/jdbc/core/SqlReturnType.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2018 the original author or authors. + * Copyright 2002-2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -61,7 +61,7 @@ public interface SqlReturnType { * @see java.sql.Types * @see java.sql.CallableStatement#getObject */ - Object getTypeValue(CallableStatement cs, int paramIndex, int sqlType, @Nullable String typeName) + Object getTypeValue(CallableStatement cs, int paramIndex, int sqlType, @Nullable String typeName) throws SQLException; }