From eb07dea7958b0314fc79ea4f4b5e8ce710c169ef Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 11 Oct 2021 15:31:40 +0200 Subject: [PATCH] Polish contribution See gh-27544 --- .../java/org/springframework/core/io/ByteArrayResource.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/io/ByteArrayResource.java b/spring-core/src/main/java/org/springframework/core/io/ByteArrayResource.java index 6a2e666b6b..c5989b8330 100644 --- a/spring-core/src/main/java/org/springframework/core/io/ByteArrayResource.java +++ b/spring-core/src/main/java/org/springframework/core/io/ByteArrayResource.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2018 the original author or authors. + * Copyright 2002-2021 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. @@ -126,7 +126,7 @@ public class ByteArrayResource extends AbstractResource { */ @Override public int hashCode() { - return Arrays.hashCode(byteArray); + return Arrays.hashCode(this.byteArray); } }