Here you can find the source of reportRemoveSymink(Path softLinkLocation)
public static void reportRemoveSymink(Path softLinkLocation)
//package com.java2s; //License from project: Open Source License import java.nio.file.Path; public class Main { public static void reportRemoveSymink(String softLinkLocation) { fileCreationReporter("Removing link " + softLinkLocation); }/*from w w w . j a va 2 s . co m*/ public static void reportRemoveSymink(Path softLinkLocation) { reportRemoveSymink(softLinkLocation.toString()); } public static void fileCreationReporter(String string) { System.out.println(string); } }