From 1d6a66d8572e57f31aa1f440646cf00dda4d1800 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Mon, 7 Apr 2008 19:21:06 +0000 Subject: [PATCH] make accessors public git-svn-id: http://trooper/svn/projects/jSite/trunk@650 c3eda9e8-030b-0410-8277-bc7414b0a119 --- src/net/pterodactylus/jsite/core/Project.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.7.4