From 52b6f9b56d18702e4e095aea011025f87cdab280 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 17 Apr 2019 15:55:26 +0200 Subject: [PATCH] Align Javadoc for Base64Utils.encodeToString() with implementation Closes gh-22812 --- .../src/main/java/org/springframework/util/Base64Utils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/util/Base64Utils.java b/spring-core/src/main/java/org/springframework/util/Base64Utils.java index d80b51e84f..64121e2b36 100644 --- a/spring-core/src/main/java/org/springframework/util/Base64Utils.java +++ b/spring-core/src/main/java/org/springframework/util/Base64Utils.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2017 the original author or authors. + * Copyright 2002-2019 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. @@ -89,7 +89,7 @@ public abstract class Base64Utils { /** * Base64-encode the given byte array to a String. - * @param src the original byte array (may be {@code null}) + * @param src the original byte array * @return the encoded byte array as a UTF-8 String */ public static String encodeToString(byte[] src) {