726727728729730731732733734735736
if (attributes.length >= 1) { String state = attributes[0].getValue(); if (states.contains(state)) { ICompilerProblem problem = new DuplicateSkinStateProblem(tag, state); problems.add(problem); } states.add(state); } }
758759760761762763764765766767768
{ for (String state : c.getSkinStates(problems)) { if (states.contains(state)) { ICompilerProblem problem = new DuplicateSkinStateProblem(c, state); problems.add(problem); } states.add(state); }