There are two POJOs Market and MarketDTO in two packages.
Market is a mapping object for JSON response from remote service.
MarketDTO is a response object which will be exposed via our service.
There are some data massage from Market->MarketDTO. They have some common fields and both have unique fields as well. There are 3 common fields such as id, name and status.
However, Sonarqube indicates their getters and setters as duplicated blocks of codes to be removed. Is this actually bad code or I should just mark it as false positive?