Skip to content

Commit 61a5fec

Browse files
U-FAREAST\ramguptU-FAREAST\ramgupt
authored andcommitted
Fix typo
1 parent 14fcb99 commit 61a5fec

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/main/java/com/microsoft/graph/concurrency/DefaultExecutors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public ILogger getLogger() {
145145
return logger;
146146
}
147147

148-
public void shutDownBackgroundExecutors() {
148+
public void shutdownBackgroundExecutors() {
149149
this.backgroundExecutor.shutdown();
150150
}
151151
}

src/main/java/com/microsoft/graph/concurrency/IExecutors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ <Result> void performOnForeground(final ClientException exception,
7171
/**
7272
* Shuts down the background executors
7373
*/
74-
void shutDownBackgroundExecutors();
74+
void shutdownBackgroundExecutors();
7575
}

src/main/java/com/microsoft/graph/core/BaseClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public void setSerializer(final ISerializer serializer) {
174174
this.serializer = serializer;
175175
}
176176

177-
public void shutDown() {
178-
this.executors.shutDownBackgroundExecutors();
177+
public void shutdown() {
178+
this.executors.shutdownBackgroundExecutors();
179179
}
180180
}

src/main/java/com/microsoft/graph/core/IBaseClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,5 @@ public interface IBaseClient {
9090
/*
9191
* Shuts down the executors.
9292
*/
93-
void shutDown();
93+
void shutdown();
9494
}

0 commit comments

Comments
 (0)