private static void parseLine()

in src/main/java/com/aliyun/credentials/utils/ProfileUtils.java [41:52]


    private static void parseLine(ParserProgress progress, String line) {
        ++progress.currentLineNumber;
        if (!EMPTY_LINE.matcher(line).matches() && !(line.startsWith("#") || line.startsWith(";"))) {
            if (isSectionDefinitionLine(line)) {
                readSectionDefinitionLine(progress, line);
            } else if (line.startsWith("\t")) {
                readPropertyContinuationLine(progress, line);
            } else {
                readPropertyDefinitionLine(progress, line);
            }
        }
    }