Skip to content

Commit 3be3191

Browse files
committed
Merge pull request square#345 from tttzof351/master
Remove prefix Utils. because import static
2 parents f78c6b9 + c52218a commit 3be3191

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

picasso/src/main/java/com/squareup/picasso/RequestCreator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public Bitmap get() throws IOException {
212212
}
213213

214214
Request finalData = picasso.transformRequest(data.build());
215-
String key = Utils.createKey(finalData);
215+
String key = createKey(finalData);
216216

217217
Action action = new GetAction(picasso, finalData, skipMemoryCache, key);
218218
return forRequest(picasso.context, picasso, picasso.dispatcher, picasso.cache, picasso.stats,
@@ -229,7 +229,7 @@ public void fetch() {
229229
}
230230
if (data.hasImage()) {
231231
Request finalData = picasso.transformRequest(data.build());
232-
String key = Utils.createKey(finalData);
232+
String key = createKey(finalData);
233233

234234
Action action = new FetchAction(picasso, finalData, skipMemoryCache, key);
235235
picasso.enqueueAndSubmit(action);

0 commit comments

Comments
 (0)