mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
12 lines
247 B
Java
12 lines
247 B
Java
public class Bar {
|
|
|
|
/**
|
|
*
|
|
* @param line
|
|
* @param file
|
|
*/
|
|
public void printError(String detail, int line, String file) {
|
|
System.out.println(<selection>file + ":" +line</selection> + " error: " + detail);
|
|
}
|
|
}
|