use of org.freeplane.core.resources.ResourceController in project freeplane by freeplane.
the class ReportRegistry method registerReport.
synchronized void registerReport(final String hash, final String lastReportInfo) {
final ResourceController resourceController = ResourceController.getResourceController();
resourceController.setProperty(BUGREPORT + hash, "1");
ResourceController.getResourceController().setProperty(ReportGenerator.LAST_BUG_REPORT_INFO, lastReportInfo);
}
Aggregations