Skip to content

Commit

Permalink
Merge pull request #87 from KOHOH1992/master
Browse files Browse the repository at this point in the history
Fixed #82
  • Loading branch information
IceskYsl committed Sep 10, 2013
2 parents ba80126 + 0d21124 commit cfb9f7e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/src/cn/eoe/app/view/BlogFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public void onRefresh() {
@Override
public void onLoadMore() {
// TODO Auto-generated method stub
if (more_url.equals(null) || more_url.equals("")) {
if (more_url==null || more_url.equals("")) {
mHandler.sendEmptyMessage(1);
return;
} else {
Expand Down
2 changes: 1 addition & 1 deletion source/src/cn/eoe/app/view/NewsFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public void onRefresh() {
@Override
public void onLoadMore() {
// TODO Auto-generated method stub
if (more_url.equals(null) || more_url.equals("")) {
if (more_url==null || more_url.equals("")) {
mHandler.sendEmptyMessage(1);
return;
} else {
Expand Down
2 changes: 1 addition & 1 deletion source/src/cn/eoe/app/view/WikiFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public void onRefresh() {

@Override
public void onLoadMore() {
if (more_url.equals(null) || more_url.equals("")) {
if (more_url==null || more_url.equals("")) {
mHandler.sendEmptyMessage(1);
return;
} else {
Expand Down

0 comments on commit cfb9f7e

Please sign in to comment.