Skip to content

Commit 0df0ee5

Browse files
committed
Make writeReportAssetsTo protected
so extending Reporters can call it when necessary
1 parent a9c09e5 commit 0df0ee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/utplsql/api/reporter/CoverageHTMLReporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public CoverageHTMLReporter(String selfType, Object[] attributes) {
2828
* @param targetDirectory Directory where the assets should be stored
2929
* @throws RuntimeException
3030
*/
31-
static void writeReportAssetsTo(Path targetDirectory) throws RuntimeException {
31+
protected static void writeReportAssetsTo(Path targetDirectory) throws RuntimeException {
3232
ResourceUtil.copyResources(Paths.get("CoverageHTMLReporter"), targetDirectory);
3333
}
3434

0 commit comments

Comments
 (0)