private static List getActiveProfileIds()

in src/main/java/org/apache/maven/plugins/linkcheck/SiteInvoker.java [150:160]


    private static List<String> getActiveProfileIds( MavenProject clone )
    {
        List<String> profileIds = new ArrayList<>();

        for ( Object o : clone.getActiveProfiles() )
        {
            profileIds.add( ( (Profile) o ).getId() );
        }

        return profileIds;
    }