From: David ‘Bombe’ Roden Date: Mon, 7 Apr 2008 19:21:06 +0000 (+0000) Subject: make accessors public X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=1d6a66d8572e57f31aa1f440646cf00dda4d1800;p=jSite2.git make accessors public git-svn-id: http://trooper/svn/projects/jSite/trunk@650 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/jsite/core/Project.java b/src/net/pterodactylus/jsite/core/Project.java index 61cfba9..cc53268 100644 --- a/src/net/pterodactylus/jsite/core/Project.java +++ b/src/net/pterodactylus/jsite/core/Project.java @@ -66,7 +66,7 @@ public class Project { * * @return The description of the project */ - String getDescription() { + public String getDescription() { return description; } @@ -76,7 +76,7 @@ public class Project { * @param description * The description of the project */ - void setDescription(String description) { + public void setDescription(String description) { this.description = description; }