Skip to content

Commit 8575394

Browse files
committed
Clean code
1 parent ee50fd1 commit 8575394

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

library/src/com/nostra13/universalimageloader/cache/disc/naming/FileNameGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
public interface FileNameGenerator {
2525

2626
/** Generates unique file name for image defined by URI */
27-
public abstract String generate(String imageUri);
27+
String generate(String imageUri);
2828
}

library/src/com/nostra13/universalimageloader/core/DisplayImageOptions.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@ public Builder resetViewBeforeLoading(boolean resetViewBeforeLoading) {
330330
*
331331
* @deprecated Use {@link #cacheInMemory(boolean) cacheInMemory(true)} instead
332332
*/
333+
@Deprecated
333334
public Builder cacheInMemory() {
334335
cacheInMemory = true;
335336
return this;

0 commit comments

Comments
 (0)