private AbbreviationRules()

in src/org/gridgain/inspection/abbrev/AbbreviationRules.java [196:215]


    private AbbreviationRules(File file) {
        if (file == null) {
            for (String[] entry : ABBREV_TABLE) {
                assert entry.length == 2;

                abbreviationMap.put(entry[0], entry[1]);
            }

            initLatch.countDown();
        }
        else {
            abbreviationFile = file;

            Thread fileWatchThread = new Thread(new AbbreviationFileWatcher());

            fileWatchThread.setDaemon(true);

            fileWatchThread.start();
        }
    }