Skip to content

Commit

Permalink
Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
warnyul committed May 15, 2018
1 parent 53d0885 commit bb2b72e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ final class AndroidVariantLibrary implements SoftwareComponentInternal {

private final Set<UsageContext> _usages
private final PublishConfiguration publishConfiguration
private final ImmutableAttributesFactory attributesFactory;
private final ImmutableAttributesFactory attributesFactory

AndroidVariantLibrary(ObjectFactory objectFactory, ConfigurationContainer configurations, ImmutableAttributesFactory attributesFactory, PublishConfiguration publishConfiguration) {
this.publishConfiguration = publishConfiguration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class AndroidVariantLibraryTest extends AbstractProjectBuilderSpec {

AndroidVariantLibrary component
ObjectFactory objectFactory = new DefaultObjectFactory(DirectInstantiator.INSTANCE, NamedObjectInstantiator.INSTANCE);
Usage runtime;
Usage compile;
Usage runtime
Usage compile

def 'setup'() {
File srcFolder = new File(root, "src${File.separator}main")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ class TestUtil {
.withName(name)
.withParent(parent)
.withProjectDir(projectDir)
.build();
.build()
}
}

0 comments on commit bb2b72e

Please sign in to comment.