fix: Fix context object (#2415)

* fix pr builder goals

* update links

* add context-object to build

* add autogenerated content

* fix checkstyle findings
This commit is contained in:
Ilkka Seppälä
2023-01-01 12:28:51 +02:00
committed by GitHub
parent 3d30e92cb2
commit 8877ba70d3
17 changed files with 254 additions and 94 deletions
@@ -5,13 +5,13 @@ import lombok.Getter;
@Getter
public class LayerC {
public ServiceContext context;
public ServiceContext context;
public LayerC(LayerB layerB) {
this.context = layerB.getContext();
}
public LayerC(LayerB layerB) {
this.context = layerB.getContext();
}
public void addSearchInfo(String searchService) {
context.setSearchService(searchService);
}
public void addSearchInfo(String searchService) {
context.setSearchService(searchService);
}
}