Skip to content

Commit

Permalink
Use consistent formatting for view name in AbstractView
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Jun 22, 2024
1 parent c571ee1 commit 000b563
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2024 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.
Expand Down Expand Up @@ -495,7 +495,7 @@ public String toString() {
}

protected String formatViewName() {
return (getBeanName() != null ? "name '" + getBeanName() + "'" : "[" + getClass().getSimpleName() + "]");
return (getBeanName() != null ? "name [" + getBeanName() + "]" : "[" + getClass().getSimpleName() + "]");
}

}

0 comments on commit 000b563

Please sign in to comment.