Skip to content

Commit c00a725

Browse files
committed
fixed after collectData plugin call
1 parent 552b2b8 commit c00a725

File tree

1 file changed

+1
-1
lines changed
  • core-api/src/main/java/com/airepublic/bmstoinverter/core

1 file changed

+1
-1
lines changed

core-api/src/main/java/com/airepublic/bmstoinverter/core/BMS.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public void process(final Runnable callback) {
180180
if (getPlugins() != null) {
181181
getPlugins().stream().forEach(p -> {
182182
LOG.debug("Calling BMS plugin (afterCollectData): {}", p.getName());
183-
p.beforeCollectData(this);
183+
p.afterCollectData(this);
184184
});
185185
}
186186
} catch (final NoDataAvailableException e) {

0 commit comments

Comments
 (0)