Skip to content

Commit e2f122d

Browse files
smallyardmarcphilipp
authored andcommitted
Remove redundant final of private method (#423)
1 parent 7a72e1c commit e2f122d

File tree

1 file changed

+1
-1
lines changed
  • junit-platform-engine/src/main/java/org/junit/platform/engine

1 file changed

+1
-1
lines changed

junit-platform-engine/src/main/java/org/junit/platform/engine/UniqueId.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public final UniqueId append(String segmentType, String value) {
143143
*
144144
* @see #append(String, String)
145145
*/
146-
private final UniqueId append(Segment segment) {
146+
private UniqueId append(Segment segment) {
147147
UniqueId clone = new UniqueId(this.uniqueIdFormat, this.segments);
148148
clone.segments.add(segment);
149149
return clone;

0 commit comments

Comments
 (0)