File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
log4j-core/src/main/java/org/apache/logging/log4j/core/appender/rolling/action Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -117,13 +117,13 @@ public static Builder newBuilder() {
117
117
public static final class Builder implements org .apache .logging .log4j .core .util .Builder <IfLastModified > {
118
118
@ PluginBuilderAttribute
119
119
@ Required (message = "No age provided for IfLastModified" )
120
- private Duration age ;
120
+ private org . apache . logging . log4j . core . appender . rolling . action . Duration age ;
121
121
122
122
@ PluginElement ("nestedConditions" )
123
123
private PathCondition [] nestedConditions ;
124
124
125
125
public Builder setAge (final Duration age ) {
126
- this .age = age ;
126
+ this .age = org . apache . logging . log4j . core . appender . rolling . action . Duration . ofMillis ( age . toMillis ()) ;
127
127
return this ;
128
128
}
129
129
You can’t perform that action at this time.
0 commit comments