Skip to content

Commit

Permalink
修复一个拼写错误
Browse files Browse the repository at this point in the history
  • Loading branch information
kymjs committed Jul 27, 2015
1 parent 11c5f91 commit 0c08c40
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions KJFrame/src/org/kymjs/kjframe/KJBitmap.java
Original file line number Diff line number Diff line change
Expand Up @@ -421,12 +421,22 @@ public Bitmap getMemoryCache(String url) {
}

/**
* 取消一个加载请求
* 取消一个加载请求(拼写错误,请使用cancel(url))
*
* @param url
*/
@Deprecated
public void cancle(String url) {
displayer.cancle(url);
displayer.cancel(url);
}

/**
* 取消一个加载请求
*
* @param url
*/
public void cancel(String url) {
displayer.cancel(url);
}

/**
Expand Down
Binary file modified binrary/KJFrameForAndroid_v2.239.jar
Binary file not shown.

0 comments on commit 0c08c40

Please sign in to comment.