X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FLinkPart.java;h=de7cb256e76f31aa0760ee09c4837499601dcf05;hb=3331b9d93ba936b0fde3fdc00417d236d63988e6;hp=d5da73062955181f873a701d0c6bfa60ea8bd2e8;hpb=47ed7eaf00c35889781831d33d04e9f91c9ad266;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 d5da730..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 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; + } + }