private static String removeTrailingComments()

in src/main/java/com/aliyun/credentials/utils/ProfileUtils.java [152:161]


    private static String removeTrailingComments(String line, String... commentPatterns) {
        int earliestMatchIndex = line.length();
        for (String pattern : commentPatterns) {
            int index = line.indexOf(pattern);
            if (index >= 0 && index < earliestMatchIndex) {
                earliestMatchIndex = index;
            }
        }
        return line.substring(0, earliestMatchIndex);
    }