@@ -307,7 +307,6 @@ public static ReportNode reportPqToPvBuses(ReportNode reportNode, int pqToPvBusC
307
307
308
308
public static ReportNode reportPvPqSwitchLimit (LfBus controllerBus , int limit , boolean log , Logger logger ) {
309
309
ReportNode result = ReportNode .newRootReportNode ()
310
- .withResourceBundles (PowsyblCoreReportResourceBundle .BASE_NAME )
311
310
.withMessageTemplate ("pvPqSwitchLimit" ,
312
311
"Bus '${busId}' blocked PQ as it has reached its max number of PQ -> PV switch (${limit})" )
313
312
.withUntypedValue ("busId" , controllerBus .getId ())
@@ -322,7 +321,6 @@ public static ReportNode reportPvPqSwitchLimit(LfBus controllerBus, int limit, b
322
321
323
322
public static ReportNode reportPqToPvBusMaxLimit (LfBus controllerBus , LfBus controlledBus , double targetV , boolean log , Logger logger ) {
324
323
ReportNode result = ReportNode .newRootReportNode ()
325
- .withResourceBundles (PowsyblCoreReportResourceBundle .BASE_NAME )
326
324
.withMessageTemplate ("pqToPvBusMaxLimit" ,
327
325
"Switch bus '${busId}' PQ -> PV, q=maxQ and v=${busV}kV > targetV=${targetV}kV" )
328
326
.withUntypedValue ("busId" , controllerBus .getId ())
@@ -340,7 +338,6 @@ public static ReportNode reportPqToPvBusMaxLimit(LfBus controllerBus, LfBus cont
340
338
341
339
public static ReportNode reportPqToPvBusMinLimit (LfBus controllerBus , LfBus controlledBus , double targetV , boolean log , Logger logger ) {
342
340
ReportNode result = ReportNode .newRootReportNode ()
343
- .withResourceBundles (PowsyblCoreReportResourceBundle .BASE_NAME )
344
341
.withMessageTemplate ("pqToPvBusMinLimit" ,
345
342
"Switch bus '${busId}' PQ -> PV, q=minQ and v=${busV}kV < targetV=${targetV}kV" )
346
343
.withUntypedValue ("busId" , controllerBus .getId ())
@@ -386,7 +383,6 @@ public static ReportNode reportReactiveControllerBusesToPqMaxQ(LfBus controllerB
386
383
boolean log ,
387
384
Logger logger ) {
388
385
ReportNode result = ReportNode .newRootReportNode ()
389
- .withResourceBundles (PowsyblCoreReportResourceBundle .BASE_NAME )
390
386
.withMessageTemplate ("reactiveControllerBusesToPqMaxQ" ,
391
387
"Remote reactive power controller bus '${busId}' -> PQ, q=${busQ} > maxQ=${maxQ}" )
392
388
.withUntypedValue ("busId" , controllerBus .getId ())
@@ -406,7 +402,6 @@ public static ReportNode reportReactiveControllerBusesToPqMinQ(LfBus controllerB
406
402
boolean log ,
407
403
Logger logger ) {
408
404
ReportNode result = ReportNode .newRootReportNode ()
409
- .withResourceBundles (PowsyblCoreReportResourceBundle .BASE_NAME )
410
405
.withMessageTemplate ("reactiveControllerBusesToPqMinQ" ,
411
406
"Remote reactive power controller bus '${busId}' -> PQ, q=${busQ} < minQ=${minQ}" )
412
407
.withUntypedValue ("busId" , controllerBus .getId ())
0 commit comments