This is an automated email from the ASF dual-hosted git repository.

elharo pushed a commit to branch println
in repository https://gitbox.apache.org/repos/asf/maven-war-plugin.git

commit db72404cbad1964d875c1c14187522ec12606cc6
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Mon Nov 24 14:45:23 2025 -0600

    Remove debuging code
---
 .../plugins/war/WarExplodedMojoFilteringTest.java  | 24 +---------------------
 1 file changed, 1 insertion(+), 23 deletions(-)

diff --git 
a/src/test/java/org/apache/maven/plugins/war/WarExplodedMojoFilteringTest.java 
b/src/test/java/org/apache/maven/plugins/war/WarExplodedMojoFilteringTest.java
index 03aa26f..abff321 100644
--- 
a/src/test/java/org/apache/maven/plugins/war/WarExplodedMojoFilteringTest.java
+++ 
b/src/test/java/org/apache/maven/plugins/war/WarExplodedMojoFilteringTest.java
@@ -18,25 +18,6 @@
  */
 package org.apache.maven.plugins.war;
 
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
 import java.io.BufferedReader;
 import java.io.File;
 import java.io.StringReader;
@@ -129,12 +110,9 @@ public class WarExplodedMojoFilteringTest extends 
AbstractWarExplodedMojoTest {
         assertEquals("error in filtering using System Properties", comment, 
reader.readLine());
 
         String line = reader.readLine();
-        System.out.println(" line " + line);
-        System.out.println(" need " + System.getProperty("user.dir"));
         assertEquals(
                 "error in filtering using System properties", "system_key_1=" 
+ System.getProperty("user.dir"), line);
         line = reader.readLine();
-        System.out.println(" line " + line);
         assertEquals(
                 "error in filtering using System properties", "system_key_2=" 
+ System.getProperty("user.dir"), line);
 
@@ -236,7 +214,7 @@ public class WarExplodedMojoFilteringTest extends 
AbstractWarExplodedMojoTest {
         assertEquals("error in filtering using filter files", 
"resource_key_1=this_is_filtered", reader.readLine());
         assertEquals("error in filtering using filter files", 
"resource_key_2=this_is_filtered", reader.readLine());
 
-        // house keeping
+        // house-keeping
         expectedWebSourceFile.delete();
         expectedWebSource2File.delete();
         expectedResourceFile.delete();

Reply via email to