X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FLinkPart.java;h=de7cb256e76f31aa0760ee09c4837499601dcf05;hb=b72418365155d4c0dd89215c5aeff27feeae68dd;hp=1b47080da7947b420324394b4afa54b34c477d21;hpb=a47643aed43d118ca68044f95451bb5374cdb332;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/text/LinkPart.java b/src/main/java/net/pterodactylus/sone/text/LinkPart.java index 1b47080..de7cb25 100644 --- a/src/main/java/net/pterodactylus/sone/text/LinkPart.java +++ b/src/main/java/net/pterodactylus/sone/text/LinkPart.java @@ -1,5 +1,5 @@ /* - * Sone - LinkPart.java - Copyright © 2011–2012 David Roden + * Sone - LinkPart.java - Copyright © 2011–2013 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -77,15 +77,6 @@ public class LinkPart implements Part { } /** - * Returns the text of this part. - * - * @return The text of this part - */ - public String getText() { - return text; - } - - /** * Returns the title of this part. * * @return The title of this part @@ -94,4 +85,13 @@ public class LinkPart implements Part { return title; } + // + // PART METHODS + // + + @Override + public String getText() { + return text; + } + }