| 499 | } |
| 500 | |
| 501 | record CommunityFiles( |
| 502 | GHContent governance, |
| 503 | GHContent codeOfConduct, |
| 504 | GHContent contributing) { |
| 505 | |
| 506 | public CommunityFiles withFallback(CommunityFiles orgFiles) { |
| 507 | return new CommunityFiles( |
| 508 | governance != null ? governance : orgFiles.governance, |
| 509 | codeOfConduct != null ? codeOfConduct : orgFiles.codeOfConduct, |
| 510 | contributing != null ? contributing : orgFiles.contributing); |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | interface Information { |
| 515 | String summary(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…