[BLUEJ-1101] Compiler warnings are not displayed
Bluej 3.1.7 (and earlier) displayed compiler warnings in a pop-up dialog upon compilation. In current versions of BlueJ with automatic compilation, warnings are not displayed at all. While a pop-up dialog would certainly be annoying we should implement an alternative mechanism to display warnings.
This affects the "Show compiler warnings when unsafe collections are used" option in the preferences. Since warnings are never displayed, this option currently has no effect. Example code to produce warning in 3.1.7:
{code} import java.util.*;
public class Something { public Something() { ArrayList l = new ArrayList(); l.add("hello"); } } {code}
Issue metadata
- Issue type: Bug
- Priority: Medium