| 1 | package fr.sii.ogham.html.inliner; | |
| 2 | ||
| 3 | import fr.sii.ogham.core.resource.path.ResourcePath; | |
| 4 | ||
| 5 | public class ExternalCss { | |
| 6 | private ResourcePath path; | |
| 7 | | |
| 8 | private String content; | |
| 9 | ||
| 10 | public ExternalCss(ResourcePath path, String content) { | |
| 11 | super(); | |
| 12 | this.path = path; | |
| 13 | this.content = content; | |
| 14 | } | |
| 15 | ||
| 16 | public ResourcePath getPath() { | |
| 17 |
1
1. getPath : replaced return value with null for fr/sii/ogham/html/inliner/ExternalCss::getPath → RUN_ERROR |
return path; |
| 18 | } | |
| 19 | ||
| 20 | public String getContent() { | |
| 21 |
1
1. getContent : replaced return value with "" for fr/sii/ogham/html/inliner/ExternalCss::getContent → RUN_ERROR |
return content; |
| 22 | } | |
| 23 | } | |
Mutations | ||
| 17 |
1.1 |
|
| 21 |
1.1 |