Hate to revive an old thread, but I needed a little advice on the same problem.
I get the same warning messages:
Note: [classpath...]/EditorGUI.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
But my warning message occurs when I use the "set" method when using an ArrayList.
In particular:
Code:
public void setCoefficient(int index, BigInteger number) {
coefficient.set(index, number);
}
Where coefficient is just an ArrayList.
I tried to place "<BigInteger>" in different places, but still no luck.
I tried googling the warning when associated with the "set" method but no luck.
Any info would be greatly appreciated!