@@ -113,45 +113,45 @@ private Request(Uri uri, int resourceId, String stableKey, List<Transformation>
113
113
}
114
114
115
115
@ Override public String toString () {
116
- final StringBuilder sb = new StringBuilder ("Request{" );
116
+ final StringBuilder builder = new StringBuilder ("Request{" );
117
117
if (resourceId > 0 ) {
118
- sb .append (resourceId );
118
+ builder .append (resourceId );
119
119
} else {
120
- sb .append (uri );
120
+ builder .append (uri );
121
121
}
122
122
if (transformations != null && !transformations .isEmpty ()) {
123
123
for (Transformation transformation : transformations ) {
124
- sb .append (' ' ).append (transformation .key ());
124
+ builder .append (' ' ).append (transformation .key ());
125
125
}
126
126
}
127
127
if (stableKey != null ) {
128
- sb .append (" stableKey(" ).append (stableKey ).append (')' );
128
+ builder .append (" stableKey(" ).append (stableKey ).append (')' );
129
129
}
130
130
if (targetWidth > 0 ) {
131
- sb .append (" resize(" ).append (targetWidth ).append (',' ).append (targetHeight ).append (')' );
131
+ builder .append (" resize(" ).append (targetWidth ).append (',' ).append (targetHeight ).append (')' );
132
132
}
133
133
if (centerCrop ) {
134
- sb .append (" centerCrop" );
134
+ builder .append (" centerCrop" );
135
135
}
136
136
if (centerInside ) {
137
- sb .append (" centerInside" );
137
+ builder .append (" centerInside" );
138
138
}
139
139
if (rotationDegrees != 0 ) {
140
- sb .append (" rotation(" ).append (rotationDegrees );
140
+ builder .append (" rotation(" ).append (rotationDegrees );
141
141
if (hasRotationPivot ) {
142
- sb .append (" @ " ).append (rotationPivotX ).append (',' ).append (rotationPivotY );
142
+ builder .append (" @ " ).append (rotationPivotX ).append (',' ).append (rotationPivotY );
143
143
}
144
- sb .append (')' );
144
+ builder .append (')' );
145
145
}
146
146
if (purgeable ) {
147
- sb .append (" purgeable" );
147
+ builder .append (" purgeable" );
148
148
}
149
149
if (config != null ) {
150
- sb .append (' ' ).append (config );
150
+ builder .append (' ' ).append (config );
151
151
}
152
- sb .append ('}' );
152
+ builder .append ('}' );
153
153
154
- return sb .toString ();
154
+ return builder .toString ();
155
155
}
156
156
157
157
String logId () {
0 commit comments