Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change modifier from private to protected #126

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/org/embulk/input/s3/S3FileInputPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,12 @@ public TransactionalFileInput open(TaskSource taskSource, int taskIndex)
return new S3FileInput(task, taskIndex);
}

private AWSCredentialsProvider getCredentialsProvider(PluginTask task)
protected AWSCredentialsProvider getCredentialsProvider(PluginTask task)
{
return AwsCredentials.getAWSCredentialsProvider(task);
}

private ClientConfiguration getClientConfiguration(PluginTask task)
protected ClientConfiguration getClientConfiguration(PluginTask task)
{
ClientConfiguration clientConfig = new ClientConfiguration();

Expand Down Expand Up @@ -443,7 +443,7 @@ public void close()
}
}

private AmazonS3 newS3Client(final PluginTask task)
protected AmazonS3 newS3Client(final PluginTask task)
{
Optional<String> endpoint = task.getEndpoint();
Optional<String> region = task.getRegion();
Expand Down