Skip to content

Commit 36706e9

Browse files
committed
removed final modifier from ConfigOpac class
1 parent 085eb74 commit 36706e9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/java/de/unigoettingen/sub/search/opac/ConfigOpac.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@
4646
import lombok.extern.log4j.Log4j2;
4747

4848
@Log4j2
49-
public final class ConfigOpac {
50-
49+
//CHECKSTYLE:OFF
50+
// no final modifier, otherwise mockito cannot mock this class
51+
public class ConfigOpac {
52+
//CHECKSTYLE:ON
5153
private XMLConfiguration config;
5254
private static String configPfad;
5355

0 commit comments

Comments
 (0)