Skip to content

Commit

Permalink
Fix unchecked warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
arthepsy committed Oct 27, 2014
1 parent 2c7b0cf commit a2e0533
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ public ScalaDefaultProfile(AnnotationProfileParser annotationProfileParser) {

@Override
public RulesProfile createProfile(ValidationMessages messages) {
return annotationProfileParser.parse(Scala.KEY, "sonar", Scala.KEY, Collections.EMPTY_LIST, messages);
return annotationProfileParser.parse(Scala.KEY, "sonar", Scala.KEY, Collections.<Class>emptyList(), messages);
}
}

0 comments on commit a2e0533

Please sign in to comment.