You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: org.springframework.context/src/main/java/org/springframework/context/support/ReloadableResourceBundleMessageSource.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2009 the original author or authors.
2
+
* Copyright 2002-2012 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -135,7 +135,7 @@ public class ReloadableResourceBundleMessageSource extends AbstractMessageSource
135
135
* @see java.util.ResourceBundle
136
136
*/
137
137
publicvoidsetBasename(Stringbasename) {
138
-
setBasenames(newString[] {basename});
138
+
setBasenames(basename);
139
139
}
140
140
141
141
/**
@@ -153,7 +153,7 @@ public void setBasename(String basename) {
Copy file name to clipboardExpand all lines: org.springframework.context/src/main/java/org/springframework/context/support/ResourceBundleMessageSource.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2008 the original author or authors.
2
+
* Copyright 2002-2012 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -100,7 +100,7 @@ public class ResourceBundleMessageSource extends AbstractMessageSource implement
100
100
* @see java.util.ResourceBundle#getBundle(String)
101
101
*/
102
102
publicvoidsetBasename(Stringbasename) {
103
-
setBasenames(newString[] {basename});
103
+
setBasenames(basename);
104
104
}
105
105
106
106
/**
@@ -119,7 +119,7 @@ public void setBasename(String basename) {
0 commit comments