Shorten bloated code
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 28 Oct 2016 22:29:27 +0000 (00:29 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 28 Oct 2016 22:29:27 +0000 (00:29 +0200)
src/main/java/net/pterodactylus/sone/text/SoneTextParser.java

index 88efd16..ee89c05 100644 (file)
@@ -394,8 +394,7 @@ public class SoneTextParser implements Parser<SoneTextParserContext> {
        }
 
        private void renderHttpLink(PartContainer parts, String link, LinkType linkType) {
-               String name;
-               name = link.substring(linkType == LinkType.HTTP ? 7 : 8);
+               String name = link.substring(linkType == LinkType.HTTP ? 7 : 8);
                int firstSlash = name.indexOf('/');
                int lastSlash = name.lastIndexOf('/');
                if ((lastSlash - firstSlash) > 3) {