File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/com/qiniu/storage Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,8 +72,8 @@ public final class Configuration implements Cloneable {
72
72
/**
73
73
* 特殊默认域名
74
74
*/
75
- public static String DEFAULT_RS_HOST = "rs.qiniu.com" ;
76
- public static String DEFAULT_API_HOST = "api.qiniu.com" ;
75
+ public static String defaultRsHost = "rs.qiniu.com" ;
76
+ public static String defaultApiHost = "api.qiniu.com" ;
77
77
78
78
public Configuration () {
79
79
this .zone = null ;
@@ -137,15 +137,15 @@ public String rsHost() {
137
137
if (useHttpsDomains ) {
138
138
scheme = "https://" ;
139
139
}
140
- return scheme + DEFAULT_RS_HOST ;
140
+ return scheme + defaultRsHost ;
141
141
}
142
142
143
143
public String apiHost () {
144
144
String scheme = "http://" ;
145
145
if (useHttpsDomains ) {
146
146
scheme = "https://" ;
147
147
}
148
- return scheme + DEFAULT_API_HOST ;
148
+ return scheme + defaultApiHost ;
149
149
}
150
150
151
151
You can’t perform that action at this time.
0 commit comments