diff options
author | James Moger <james.moger@gitblit.com> | 2012-10-30 17:01:57 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-10-30 17:01:57 -0400 |
commit | e26d9338ddc5f0f0440947e60013a57b82043783 (patch) | |
tree | 753d7620585655734292ee66adc7f44b550d20be /src/com/gitblit/models | |
parent | f5cbd026002eed8209368e9071726dfb67183e81 (diff) | |
download | gitblit-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.java | 2 |
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;
|