* Stats: Change stat.full default.to false (saves ~ 1MB)

This commit is contained in:
zzz
2010-12-26 12:35:54 +00:00
parent 66f3484508
commit 7ee7cbf660
2 changed files with 2 additions and 2 deletions

View File

@ -139,6 +139,6 @@ public class ConfigStatsHelper extends HelperBase {
public boolean getCurrentCanBeGraphed() { return _currentCanBeGraphed; }
public String getExplicitFilter() { return _filter; }
public boolean getIsFull() {
return _context.getBooleanPropertyDefaultTrue(StatManager.PROP_STAT_FULL);
return _context.getBooleanProperty(StatManager.PROP_STAT_FULL);
}
}