X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Flibrary%2FRemoteLibrary.java;h=83766396499fa783712b0558e51c3ad63def314e;hb=14b574483b51d3859acef6a269f8841b5a4eb5f8;hp=6c1e56f5d22f4ceee61ab260b722352efe583225;hpb=e42573a004fac26378c693ce9ef0d6319713c682;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/library/RemoteLibrary.java b/src/be/nikiroo/fanfix/library/RemoteLibrary.java index 6c1e56f..8376639 100644 --- a/src/be/nikiroo/fanfix/library/RemoteLibrary.java +++ b/src/be/nikiroo/fanfix/library/RemoteLibrary.java @@ -57,6 +57,7 @@ public class RemoteLibrary extends BasicLibrary { try { new ConnectActionClient(host, port, true, null) { + @Override public void action(Version serverVersion) throws Exception { try { Object rep = send("GET_METADATA *"); @@ -83,6 +84,7 @@ public class RemoteLibrary extends BasicLibrary { final File[] tmp = new File[1]; try { new ConnectActionClient(host, port, true, null) { + @Override public void action(Version serverVersion) throws Exception { try { Object rep = send("GET_STORY " + luid); @@ -151,4 +153,10 @@ public class RemoteLibrary extends BasicLibrary { throw new java.lang.InternalError( "No write support allowed on remote Libraries"); } + + @Override + public void setSourceCover(String source, String luid) { + throw new java.lang.InternalError( + "No write support allowed on remote Libraries"); + } }