"Fossies" - the Fresh Open Source Software Archive  

Source code changes of the file "spring-messaging/src/main/java/org/springframework/messaging/simp/stomp/StompHeaders.java" between
spring-framework-5.3.23.tar.gz and spring-framework-5.3.24.tar.gz

About: Spring Framework is an application framework for the Java platform and .NET Framework. Community edition.

StompHeaders.java  (spring-framework-5.3.23):StompHeaders.java  (spring-framework-5.3.24)
/* /*
* Copyright 2002-2020 the original author or authors. * Copyright 2002-2022 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* https://www.apache.org/licenses/LICENSE-2.0 * https://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
skipping to change at line 210 skipping to change at line 210
* Applies to the CONNECT frame. * Applies to the CONNECT frame.
* @since 5.0.7 * @since 5.0.7
*/ */
public void setAcceptVersion(@Nullable String... acceptVersions) { public void setAcceptVersion(@Nullable String... acceptVersions) {
if (ObjectUtils.isEmpty(acceptVersions)) { if (ObjectUtils.isEmpty(acceptVersions)) {
set(ACCEPT_VERSION, null); set(ACCEPT_VERSION, null);
return; return;
} }
Arrays.stream(acceptVersions).forEach(version -> Arrays.stream(acceptVersions).forEach(version ->
Assert.isTrue(version != null && (version.equals( "1.1") || version.equals("1.2")), Assert.isTrue(version != null && (version.equals( "1.1") || version.equals("1.2")),
"Invalid version: " + version)); () -> "Invalid version: " + versi on));
set(ACCEPT_VERSION, StringUtils.arrayToCommaDelimitedString(accep tVersions)); set(ACCEPT_VERSION, StringUtils.arrayToCommaDelimitedString(accep tVersions));
} }
/** /**
* Get the accept-version header. * Get the accept-version header.
* @since 5.0.7 * @since 5.0.7
*/ */
@Nullable @Nullable
public String[] getAcceptVersion() { public String[] getAcceptVersion() {
String value = getFirst(ACCEPT_VERSION); String value = getFirst(ACCEPT_VERSION);
 End of changes. 2 change blocks. 
2 lines changed or deleted 2 lines changed or added

Home  |  About  |  Features  |  All  |  Newest  |  Dox  |  Diffs  |  RSS Feeds  |  Screenshots  |  Comments  |  Imprint  |  Privacy  |  HTTP(S)