(int solarYear, int solarMonth, int solarDay)
| 11 | private int solarDay; |
| 12 | |
| 13 | public Solar(int solarYear, int solarMonth, int solarDay) { |
| 14 | this.solarYear = solarYear; |
| 15 | this.solarMonth = solarMonth; |
| 16 | this.solarDay = solarDay; |
| 17 | } |
| 18 | |
| 19 | public int getSolarYear() { |
| 20 | return solarYear; |
nothing calls this directly
no outgoing calls
no test coverage detected