Cleanup: fix some confusing variable naming

This commit is contained in:
Kris De Volder
2017-05-09 11:32:09 -07:00
parent f1493fad0e
commit f26f189fcb

View File

@@ -40,8 +40,8 @@ import reactor.core.scheduler.Schedulers;
*/
public class VscodeCompletionEngineAdapter implements VscodeCompletionEngine {
private final static int MAX_COMPLETIONS = 50; //TODO: move this to CompletionEngineOptions.
private int maxCompletions = MAX_COMPLETIONS;
private final static int DEFAULT_MAX_COMPLETIONS = 50;
private int maxCompletions = DEFAULT_MAX_COMPLETIONS; //TODO: move this to CompletionEngineOptions.
final static Logger logger = LoggerFactory.getLogger(VscodeCompletionEngineAdapter.class);
private SimpleLanguageServer server;