[Android] Profile do not use section less

This commit is contained in:
zilmar 2016-10-02 08:45:30 +11:00
parent 0d479c0816
commit c729e406e9
1 changed files with 3 additions and 2 deletions

View File

@ -47,8 +47,9 @@ public class Profile implements Comparable<Profile>
{
List<Profile> profiles = new ArrayList<Profile>();
for( String name : config.keySet() )
if( !ConfigFile.SECTIONLESS_NAME.equals( name ) )
profiles.add( new Profile( isBuiltin, config.get( name ) ) );
{
profiles.add( new Profile( isBuiltin, config.get( name ) ) );
}
return profiles;
}