Skip to content

Commit 7b3a640

Browse files
committed
Spotless code
1 parent 6bae4c3 commit 7b3a640

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/main/java/de/interactive_instruments/etf/webapp/controller/EtfConfigController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ public int size() {
313313
@RequestMapping(value = "/v0/configuration", method = RequestMethod.POST, produces = "application/json")
314314
private @ResponseBody Set<Map.Entry<String, String>> getConfiguration(
315315
@RequestBody Set<Map.Entry<String, String>> newConfiguration)
316-
throws InvalidPropertyException {
316+
throws InvalidPropertyException {
317317

318318
// No path properties are allowed
319319
for (Map.Entry<String, String> e : newConfiguration) {

src/main/java/de/interactive_instruments/etf/webapp/controller/TestProjectController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private void init() throws IOException, TransformerConfigurationException {
7575
public Set<Map.Entry<String, String>> read(
7676
@PathVariable String componentType,
7777
@PathVariable String id)
78-
throws ConfigurationException, IOException, ObjectWithIdNotFoundException {
78+
throws ConfigurationException, IOException, ObjectWithIdNotFoundException {
7979
for (TestRunTaskFactory testRunTaskFactory : taskFactory.getFactories()) {
8080
try {
8181
return testRunTaskFactory.getTestProjectStore().getById(EidFactory.getDefault().createFromStrAsStr(id)).namePropertyPairs();
@@ -92,7 +92,7 @@ public String overview(
9292
@CookieValue(value = WebAppConstants.TESTDOMAIN_PARAM, defaultValue = "") String testDomainCookie,
9393
HttpServletResponse response,
9494
Model model)
95-
throws ConfigurationException, StoreException {
95+
throws ConfigurationException, StoreException {
9696
final String testDomain;
9797
if (testDomainParam == null) {
9898
testDomain = testDomainCookie;

src/main/java/de/interactive_instruments/etf/webapp/controller/TestReportController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public synchronized void getAppendixItemById(
171171
public String overview(
172172
@CookieValue(value = WebAppConstants.TESTDOMAIN_PARAM, defaultValue = "") String testDomain,
173173
Model model)
174-
throws ConfigurationException, StoreException {
174+
throws ConfigurationException, StoreException {
175175
if (SUtils.isNullOrEmpty(testDomain)) {
176176
model.addAttribute("reports", this.store.getAll());
177177
} else {

src/main/java/de/interactive_instruments/etf/webapp/controller/TestRunController.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ private String configureModelAndRedirectDirect(final Model model) throws StoreEx
207207
public String configureTransientTestObject(
208208
@RequestParam(required = true) String testProjectId,
209209
Model model)
210-
throws ConfigurationException, IOException, StoreException {
210+
throws ConfigurationException, IOException, StoreException {
211211
model.addAttribute(TESPROJECT_ID_KEY, testProjectId);
212212
return configureModelAndRedirectDirect(model);
213213
}
@@ -221,9 +221,9 @@ public String startDirect(
221221
RedirectAttributes redirectAttributes,
222222
MultipartHttpServletRequest request,
223223
Model model)
224-
throws ConfigurationException, IOException, StoreException, ParseException, NoSuchAlgorithmException,
225-
URISyntaxException, ComponentNotLoadedException, ObjectWithIdNotFoundException, InitializationException,
226-
InvalidStateTransitionException {
224+
throws ConfigurationException, IOException, StoreException, ParseException, NoSuchAlgorithmException,
225+
URISyntaxException, ComponentNotLoadedException, ObjectWithIdNotFoundException, InitializationException,
226+
InvalidStateTransitionException {
227227
testRun.getTestObject().setProperty("expires", "true");
228228
testRun.getTestObject().setProperty("tempObject", "true");
229229
testRun.getTestObject().setId(EidFactory.getDefault().createRandomUuid());
@@ -273,7 +273,7 @@ private TestRunTask initAndSubmit(TestRunDto testRunDto)
273273
@RequestMapping(value = "/testruns/create", method = RequestMethod.GET)
274274
public String configure(
275275
Model model)
276-
throws ConfigurationException, IOException, StoreException {
276+
throws ConfigurationException, IOException, StoreException {
277277
return configureModelAndRedirect(model);
278278
}
279279

0 commit comments

Comments
 (0)