mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-06 03:50:19 +02:00
compilation issue
This commit is contained in:
parent
59b635c68c
commit
3f405286f4
1 changed files with 7 additions and 1 deletions
|
@ -19,6 +19,8 @@
|
|||
|
||||
package org.geometerplus.android.fbreader.libraryService;
|
||||
|
||||
import android.os.RemoteException;
|
||||
|
||||
import org.geometerplus.fbreader.library.*;
|
||||
|
||||
public class LibraryShadow extends AbstractLibrary {
|
||||
|
@ -30,7 +32,11 @@ public class LibraryShadow extends AbstractLibrary {
|
|||
|
||||
@Override
|
||||
public boolean isUpToDate() {
|
||||
try {
|
||||
return myInterface.isUpToDate();
|
||||
} catch (RemoteException e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue