Skip to content

Commit 65fbaae

Browse files
committed
Fix linting
1 parent f5a893d commit 65fbaae

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/TaskRegistry.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ function refresh(): Promise<void> {
2626
const statusbar: Disposable = window.setStatusBarMessage(
2727
'Refreshing gradle tasks'
2828
);
29-
return Gradle.getTasks().then(
30-
gradleTasks => {
29+
return Gradle.getTasks()
30+
.then(gradleTasks => {
3131
clear();
3232
addAll(gradleTasks);
3333
changeHandlers.forEach(handler => handler());
34-
},
35-
).finally(() => {
36-
statusbar.dispose();
37-
});
34+
})
35+
.finally(() => {
36+
statusbar.dispose();
37+
});
3838
}
3939

4040
function registerChangeHandler(handler: () => void) {

0 commit comments

Comments
 (0)