Skip to content

Commit

Permalink
remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
yacut committed May 29, 2018
1 parent 3bd39e0 commit 9302fa8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class GoogleAdminService {
DirectoryScopes.ADMIN_DIRECTORY_GROUP_READONLY
);

GoogleAdminService(String credentialsFolder, String clientSecretFile, String adminAccountEmail) throws GeneralSecurityException, IOException {
GoogleAdminService(String clientSecretFile, String adminAccountEmail) throws GeneralSecurityException, IOException {

final String applicationName = "Google Admin Service @ Jenkins";
final NetHttpTransport httpTransport = GoogleNetHttpTransport.newTrustedTransport();
Expand Down Expand Up @@ -64,7 +64,7 @@ public List<String> getGroupMembers(String groupKey) throws IOException {

// public static void main(String[] args) {
// try {
// List<String> members = new GoogleAdminService(".credentials/", ".credentials/credentials.json", "[email protected]").getGroupMembers("[email protected]");
// List<String> members = new GoogleAdminService(".credentials/credentials.json", "[email protected]").getGroupMembers("[email protected]");
// System.out.println(members);
// } catch (Exception e) {
// System.out.println("error");
Expand Down

0 comments on commit 9302fa8

Please sign in to comment.