bootstrap_builders 0.0.47 → 0.0.48
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a93caf25b12f9bf91d4a462f46ee3124a950cf05
|
4
|
+
data.tar.gz: 781a570ae11be1eef01fa47f9d37537996228d32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76a104404aac1e1075e68255d9370205049aec79b8dc91e2d42188abe9333850f71a3d7347772928a354ed110e6c7c1cdc75542d5275094e9b67288606fad427
|
7
|
+
data.tar.gz: 994203fb322fae75cd0cc98a217a9e1dee0790a7e29273e74fb061b5f8839ea493689563d41954f5469ba0ed083a4fab8968a01eb125db3a48f6c0451d809bcc
|
@@ -67,7 +67,7 @@ class UrlBuilder {
|
|
67
67
|
}
|
68
68
|
|
69
69
|
generateFullUrl() {
|
70
|
-
url = this.protocol + "://" + this.host
|
70
|
+
var url = this.protocol + "://" + this.host
|
71
71
|
|
72
72
|
if (this.portSpecified) {
|
73
73
|
url += ":" + this.port
|
@@ -120,11 +120,11 @@ class UrlBuilder {
|
|
120
120
|
}
|
121
121
|
|
122
122
|
queryParametersAsString() {
|
123
|
-
queryParametersString = ""
|
124
|
-
first = true
|
123
|
+
var queryParametersString = ""
|
124
|
+
var first = true
|
125
125
|
|
126
126
|
for(key in this.queryParameters) {
|
127
|
-
value = this.queryParameters[key]
|
127
|
+
var value = this.queryParameters[key]
|
128
128
|
|
129
129
|
if (first) {
|
130
130
|
first = false
|