From 3ac2b6943c9c16bcba8da3eeda06361204af24e4 Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 25 Feb 2020 09:07:47 -0800 Subject: [PATCH] Annotate the DataSerializableSessionSerializer class with @SuppressWarnings('rawtypes'). Format source code. --- .../data/provider/DataSerializableSessionSerializer.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-session-data-geode/src/main/java/org/springframework/session/data/gemfire/serialization/data/provider/DataSerializableSessionSerializer.java b/spring-session-data-geode/src/main/java/org/springframework/session/data/gemfire/serialization/data/provider/DataSerializableSessionSerializer.java index e73c94c..010aa35 100644 --- a/spring-session-data-geode/src/main/java/org/springframework/session/data/gemfire/serialization/data/provider/DataSerializableSessionSerializer.java +++ b/spring-session-data-geode/src/main/java/org/springframework/session/data/gemfire/serialization/data/provider/DataSerializableSessionSerializer.java @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.springframework.session.data.gemfire.serialization.data.provider; import static org.springframework.data.gemfire.util.ArrayUtils.asArray; @@ -54,7 +53,7 @@ import org.springframework.util.StringUtils; * @see org.springframework.session.data.gemfire.support.AbstractSession * @since 2.0.0 */ -@SuppressWarnings("unused") +@SuppressWarnings({ "rawtypes", "unused" }) public class DataSerializableSessionSerializer extends AbstractDataSerializableSessionSerializer { /**