X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Flibrary%2FRemoteLibrary.java;h=3e0e192d1806abb2e7d4bd270f0e808821c20991;hb=cfdaf6052ddc5ca44cf19f1f6d9f154cc8443024;hp=83bb2124ecaaf9eb1bf66d92366670609c493610;hpb=d11fb35b34e44744c8b1f9226321f133af4eb151;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/library/RemoteLibrary.java b/src/be/nikiroo/fanfix/library/RemoteLibrary.java index 83bb212..3e0e192 100644 --- a/src/be/nikiroo/fanfix/library/RemoteLibrary.java +++ b/src/be/nikiroo/fanfix/library/RemoteLibrary.java @@ -141,8 +141,7 @@ public class RemoteLibrary extends BasicLibrary { private Status getStatusDo() { final Status[] result = new Status[1]; - result[0] = Status.INVALID; - + result[0] = null; try { new RemoteConnectAction() { @Override @@ -447,7 +446,7 @@ public class RemoteLibrary extends BasicLibrary { * @throws SSLException * when the key was not accepted */ - public void exit() throws IOException, SSLException { + public void stop() throws IOException, SSLException { connectRemoteAction(new RemoteAction() { @Override public void action(ConnectActionClientObject action) @@ -486,7 +485,7 @@ public class RemoteLibrary extends BasicLibrary { // The following methods are only used by Save and Delete in BasicLibrary: @Override - protected int getNextId() { + protected String getNextId() { throw new java.lang.InternalError("Should not have been called"); }