Removed more unused methods

This commit is contained in:
litetex 2022-05-09 21:05:03 +02:00
parent f69b0ff77b
commit 2015eb374a
2 changed files with 0 additions and 15 deletions

View File

@ -93,16 +93,6 @@ public final class NewPipe {
throw new ExtractionException("No service can handle the url = \"" + url + "\"");
}
public static String getNameOfService(final int id) {
try {
return getService(id).getServiceInfo().getName();
} catch (final Exception e) {
System.err.println("Service id not known");
e.printStackTrace();
return "<unknown>";
}
}
/*//////////////////////////////////////////////////////////////////////////
// Localization
//////////////////////////////////////////////////////////////////////////*/

View File

@ -43,9 +43,4 @@ public class NewPipeTest {
assertEquals(getServiceByUrl("https://soundcloud.com/pegboardnerds"), SoundCloud);
assertEquals(getServiceByUrl("https://www.google.com/url?sa=t&url=https%3A%2F%2Fsoundcloud.com%2Fciaoproduction&rct=j&q=&esrc=s&source=web&cd="), SoundCloud);
}
@Test
public void getServiceNameWithId() throws Exception {
assertEquals(NewPipe.getNameOfService(YouTube.getServiceId()), YouTube.getServiceInfo().getName());
}
}