html-convert/src/main/java/org/netbeans/tools/tutorials/Language.java [53:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static HashMap<Language, File> getTranslations(File file) {
        File parentDirectory = file.getParentFile();
        String prefix = file.getName().replace(".asciidoc", "");
        HashMap<Language, File> translations = new HashMap<>();
        for (Language l : FOREIGN_LANGUAGES) {
            File translationFile = new File(parentDirectory, prefix + l.extension);
            if (translationFile.exists()) {
                translations.put(l, translationFile);
            }
        }
        return translations;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tutorials-convert/src/main/java/org/netbeans/tools/tutorials/Language.java [53:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static HashMap<Language, File> getTranslations(File file) {
        File parentDirectory = file.getParentFile();
        String prefix = file.getName().replace(".asciidoc", "");
        HashMap<Language, File> translations = new HashMap<>();
        for (Language l : FOREIGN_LANGUAGES) {
            File translationFile = new File(parentDirectory, prefix + l.extension);
            if (translationFile.exists()) {
                translations.put(l, translationFile);
            }
        }
        return translations;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



