Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 73f1c5a

Browse filesBrowse files
committed
Polishing
1 parent 4d296fb commit 73f1c5a
Copy full SHA for 73f1c5a

File tree

Expand file treeCollapse file tree

2 files changed

+4
-4
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+4
-4
lines changed

‎spring-context/src/main/java/org/springframework/context/support/PropertySourcesPlaceholderConfigurer.java

Copy file name to clipboardExpand all lines: spring-context/src/main/java/org/springframework/context/support/PropertySourcesPlaceholderConfigurer.java
+1-2Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,6 @@ private static class ConfigurableEnvironmentPropertySource extends PropertySourc
231231
super(ENVIRONMENT_PROPERTIES_PROPERTY_SOURCE_NAME, environment);
232232
}
233233

234-
235234
@Override
236235
public boolean containsProperty(String name) {
237236
for (PropertySource<?> propertySource : super.source.getPropertySources()) {
@@ -260,6 +259,7 @@ public String toString() {
260259
}
261260
}
262261

262+
263263
/**
264264
* Fallback {@link PropertySource} that delegates to a raw {@link Environment}.
265265
* <p>Should never apply in a regular scenario, since the {@code Environment}
@@ -272,7 +272,6 @@ private static class FallbackEnvironmentPropertySource extends PropertySource<En
272272
super(ENVIRONMENT_PROPERTIES_PROPERTY_SOURCE_NAME, environment);
273273
}
274274

275-
276275
@Override
277276
public boolean containsProperty(String name) {
278277
return super.source.containsProperty(name);

‎spring-web/src/main/java/org/springframework/http/client/HttpComponentsClientHttpRequestFactory.java

Copy file name to clipboardExpand all lines: spring-web/src/main/java/org/springframework/http/client/HttpComponentsClientHttpRequestFactory.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2024 the original author or authors.
2+
* Copyright 2002-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -75,6 +75,7 @@ public class HttpComponentsClientHttpRequestFactory implements ClientHttpRequest
7575

7676
private long readTimeout = -1;
7777

78+
7879
/**
7980
* Create a new instance of the {@code HttpComponentsClientHttpRequestFactory}
8081
* with a default {@link HttpClient} based on system properties.
@@ -371,7 +372,7 @@ protected void postProcessHttpRequest(ClassicHttpRequest request) {
371372
}
372373

373374
/**
374-
* Template methods that creates a {@link HttpContext} for the given HTTP method and URI.
375+
* Template method that creates a {@link HttpContext} for the given HTTP method and URI.
375376
* <p>The default implementation returns {@code null}.
376377
* @param httpMethod the HTTP method
377378
* @param uri the URI

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.