(Config.TableConf conf)
| 88 | } |
| 89 | |
| 90 | private static void adjustTableConf(Config.TableConf conf) { |
| 91 | if (null != conf) { |
| 92 | if (conf.getRealCacheCapacity() < ABasicSimpleAddOneThread.AddCount) { |
| 93 | conf.setCacheCapacity(ABasicSimpleAddOneThread.AddCount); |
| 94 | conf.setCacheFactor(1.0f); |
| 95 | } |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | public ProviderApp providerApp; |
| 100 | private boolean started = false; |
no test coverage detected