summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/models
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2012-10-30 17:01:57 -0400
committerJames Moger <james.moger@gitblit.com>2012-10-30 17:01:57 -0400
commite26d9338ddc5f0f0440947e60013a57b82043783 (patch)
tree753d7620585655734292ee66adc7f44b550d20be /src/com/gitblit/models
parentf5cbd026002eed8209368e9071726dfb67183e81 (diff)
downloadgitblit-e26d9338ddc5f0f0440947e60013a57b82043783.tar.gz
gitblit-e26d9338ddc5f0f0440947e60013a57b82043783.zip
Refactor GC period into an integer for simpler translations
Also hooked-up GC settings in the Manager.
Diffstat (limited to 'src/com/gitblit/models')
-rw-r--r--src/com/gitblit/models/RepositoryModel.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/gitblit/models/RepositoryModel.java b/src/com/gitblit/models/RepositoryModel.java
index 23ce9e3b..ed9e7188 100644
--- a/src/com/gitblit/models/RepositoryModel.java
+++ b/src/com/gitblit/models/RepositoryModel.java
@@ -77,7 +77,7 @@ public class RepositoryModel implements Serializable, Comparable<RepositoryModel
public String originRepository;
public boolean verifyCommitter;
public String gcThreshold;
- public String gcPeriod;
+ public int gcPeriod;
public transient boolean isCollectingGarbage;
public Date lastGC;