On 25/05/2010 10:47, Alex Objelean wrote:
That is exactly what I am trying to do. To make a simple example that cause
the leak and monitor it... By quickstart I mean the simplest project which
helps to cause the leak.
package mm.util.app;
import java.awt.GraphicsEnvironment;
public class Teste
{
public static void main(String[] args) throws Exception
{
System.out.println(Thread.getAllStackTraces().size());
GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames();
System.out.println(Thread.getAllStackTraces().size());
}
}
Output:
5
6
Do I also need to prove that ITL gos to new threads or no?
Adriano