File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed
extensions/modules/xmldiff
src/main/java/org/exist/xquery/modules/xmldiff Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change 52
52
<version >${project.version} </version >
53
53
</dependency >
54
54
55
- <dependency >
56
- <groupId >org.apache.logging.log4j</groupId >
57
- <artifactId >log4j-api</artifactId >
58
- </dependency >
59
-
60
55
<dependency >
61
56
<groupId >org.xmlunit</groupId >
62
57
<artifactId >xmlunit-core</artifactId >
Original file line number Diff line number Diff line change 21
21
*/
22
22
package org .exist .xquery .modules .xmldiff ;
23
23
24
- import org .apache .logging .log4j .LogManager ;
25
- import org .apache .logging .log4j .Logger ;
26
-
27
24
import org .xmlunit .builder .DiffBuilder ;
28
25
import org .xmlunit .builder .Input ;
29
26
import org .xmlunit .diff .Diff ;
42
39
* @author <a href="mailto:[email protected] ">Pierrick Brihaye</a>
43
40
*/
44
41
public class Compare extends Function {
45
-
46
- private static final Logger logger = LogManager .getLogger (Compare .class );
47
42
private final static Properties OUTPUT_PROPERTIES = new Properties ();
48
43
49
44
static {
@@ -126,9 +121,6 @@ else if (s2.isEmpty()) {
126
121
.checkForIdentical ()
127
122
.build ();
128
123
boolean identical = !diff .hasDifferences ();
129
- if (!identical ) {
130
- logger .warn ("Diff result: {}" , diff .toString ());
131
- }
132
124
result = new BooleanValue (identical );
133
125
} catch (Exception e ) {
134
126
throw new XPathException (this , "An exception occurred while serializing node " +
You can’t perform that action at this time.
0 commit comments