View Single Post
Old 04-10-2007, 10:51 PM   PM User | #6
swong7
New to the CF scene

 
Join Date: Apr 2007
Location: Canada
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
swong7 is an unknown quantity at this point
Same problem

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!
swong7 is offline   Reply With Quote