Polishing

This commit is contained in:
Juergen Hoeller
2020-08-25 16:17:22 +02:00
parent 04df9b8f49
commit 6f0461c569
5 changed files with 22 additions and 31 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2019 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.
@@ -76,7 +76,7 @@ class ToStringVisitor implements RouterFunctions.Visitor, RequestPredicates.Visi
}
private void indent() {
for (int i=0; i < this.indent; i++) {
for (int i = 0; i < this.indent; i++) {
this.builder.append(' ');
}
}