mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 04:46:26 +07:00
11 lines
195 B
Java
11 lines
195 B
Java
public class Bar {
|
|
|
|
/**
|
|
*
|
|
* @param anObject
|
|
*/
|
|
public void printError(String detail, String anObject) {
|
|
System.out.println(anObject + " error: " + detail);
|
|
}
|
|
}
|