| 18 | import org.springframework.stereotype.Service; |
| 19 | |
| 20 | @Service |
| 21 | public class Server { |
| 22 | private final AppConfig.Server config; |
| 23 | |
| 24 | public Server(AppConfig.Server config) { |
| 25 | this.config = config; |
| 26 | } |
| 27 | |
| 28 | public AppConfig.Server getConfig() { |
| 29 | return config; |
| 30 | } |
| 31 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…