Skip to content

Commit

Permalink
Removed uneeded @SuppressWarnings annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Dec 16, 2013
1 parent 88fc4d6 commit 2fc919e
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ public String getType()
}

@Override
@SuppressWarnings("unchecked")
public Iterable<Class<? extends BuildSystemFacet>> getProvidedFacetTypes()
{
return Arrays.<Class<? extends BuildSystemFacet>> asList(MetadataFacet.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public String getType()
}

@Override
@SuppressWarnings("unchecked")
public Iterable<Class<? extends BuildSystemFacet>> getProvidedFacetTypes()
{
return Arrays.<Class<? extends BuildSystemFacet>> asList(PackagingFacet.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public Class<? extends UIWizardStep> getSetupFlow()
}

@Override
@SuppressWarnings("unchecked")
public Iterable<Class<? extends ProjectFacet>> getRequiredFacets()
{
return Arrays.<Class<? extends ProjectFacet>> asList(MetadataFacet.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public Class<? extends UIWizardStep> getSetupFlow()
}

@Override
@SuppressWarnings("unchecked")
public Iterable<Class<? extends ProjectFacet>> getRequiredFacets()
{
return Arrays.<Class<? extends ProjectFacet>> asList(PackagingFacet.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public Class<? extends UIWizardStep> getSetupFlow()
}

@Override
@SuppressWarnings("unchecked")
public Iterable<Class<? extends ProjectFacet>> getRequiredFacets()
{
return Arrays.<Class<? extends ProjectFacet>> asList(MetadataFacet.class, PackagingFacet.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ public void testCreateTempProjectWithBuildSystem() throws Exception
}

@Test
@SuppressWarnings("unchecked")
public void testCreateTempProjectWithFacets()
{
Project project = projectFactory.createTempProject(Arrays
Expand All @@ -143,7 +142,6 @@ public void testCreateTempProjectWithFacets()
}

@Test
@SuppressWarnings("unchecked")
public void testCreateTempProjectWithBuildSystemAndFacets()
{
BuildSystem buildSystem = buildSystems.get();
Expand Down

0 comments on commit 2fc919e

Please sign in to comment.