Remove some deprecated/unused code

This commit is contained in:
Chris Eager 2024-11-14 15:32:19 -06:00 committed by Chris Eager
parent a1ac5bd74c
commit 93f4a91ebf
2 changed files with 0 additions and 26 deletions

View File

@ -1,22 +0,0 @@
/*
* Copyright 2021 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.configuration;
import com.fasterxml.jackson.databind.util.StdConverter;
import java.net.MalformedURLException;
import java.net.URL;
final class URLDeserializationConverter extends StdConverter<String, URL> {
@Override
public URL convert(final String value) {
try {
return new URL(value);
} catch (MalformedURLException e) {
throw new IllegalArgumentException(e);
}
}
}

View File

@ -124,10 +124,6 @@ public class IdentityTokenCallCredentials extends CallCredentials implements Man
}
}
@Override
public void thisUsesUnstableApi() {
}
@Override
public void stop() {
synchronized (this) {