Adopt Spring Java Format

This commit is contained in:
Andy Wilkinson
2018-09-06 14:17:28 +01:00
parent 98bd2db6de
commit 408943fbb5
44 changed files with 159 additions and 205 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2017 the original author or authors.
* Copyright 2015-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -18,13 +18,13 @@ package io.spring.issuebot.triage;
import java.util.Arrays;
import io.spring.issuebot.GitHubProperties;
import io.spring.issuebot.github.GitHubOperations;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import io.spring.issuebot.GitHubProperties;
import io.spring.issuebot.github.GitHubOperations;
/**
* Central configuration for the beans involved in identifying issues that require triage.
*
@@ -45,4 +45,5 @@ class TriageConfiguration {
new LabelApplyingTriageListener(gitHubOperations,
triageProperties.getLabel()));
}
}