NiceButDim
Programmer
Hi,
I'm in the early days of learning java. I've been Tackling animation. I’ve made progress, but when I got to the subject of double buffering I started encountering the following warning when compiling;
Note: ani.java uses or overrides a deprecated API.
Note: Recompile with -deprecation for details.
I’ve traced the ‘problem’ to the following line in my update() method;
Dimension d = size();
My code is working despite the warning, but could someone possibly explain what the warning means?
Thanks.
I'm in the early days of learning java. I've been Tackling animation. I’ve made progress, but when I got to the subject of double buffering I started encountering the following warning when compiling;
Note: ani.java uses or overrides a deprecated API.
Note: Recompile with -deprecation for details.
I’ve traced the ‘problem’ to the following line in my update() method;
Dimension d = size();
My code is working despite the warning, but could someone possibly explain what the warning means?
Thanks.