File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
impl/maven-impl/src/main/java/org/apache/maven/impl Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -131,10 +131,10 @@ public void write(XmlWriterRequest<Model> request) throws XmlWriterException {
131131 final MavenStaxWriter xmlWriter = new MavenStaxWriter ();
132132 xmlWriter .setAddLocationInformation (false );
133133
134- final Function <Object , String > fmtformatter = request .getInputLocationFormatter ();
135- if (fmtformatter != null ) {
134+ final Function <Object , String > formatter = request .getInputLocationFormatter ();
135+ if (formatter != null ) {
136136 xmlWriter .setAddLocationInformation (true );
137- final Function <InputLocation , String > adapter = fmtformatter ::apply ;
137+ final Function <InputLocation , String > adapter = formatter ::apply ;
138138 xmlWriter .setStringFormatter (adapter );
139139 }
140140
You can’t perform that action at this time.
0 commit comments