1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-06 03:50:19 +02:00

compilation issue

This commit is contained in:
Nikolay Pultsin 2012-01-26 21:14:33 +00:00
parent 59b635c68c
commit 3f405286f4

View file

@ -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