Skip to content

Commit

Permalink
Remove redundant constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Sep 9, 2020
1 parent b848b84 commit ba1dc08
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import io.prestosql.Session;
import io.prestosql.spi.type.ArrayType;
import io.prestosql.spi.type.RowType;
import org.testng.annotations.BeforeClass;
Expand All @@ -39,12 +38,7 @@ public class TestLambdaExpression
{
public TestLambdaExpression()
{
this(testSessionBuilder().setTimeZoneKey(getTimeZoneKey("Pacific/Kiritimati")).build());
}

private TestLambdaExpression(Session session)
{
super(session);
super(testSessionBuilder().setTimeZoneKey(getTimeZoneKey("Pacific/Kiritimati")).build());
}

@BeforeClass
Expand Down

0 comments on commit ba1dc08

Please sign in to comment.