Nix redundant casts.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@874 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Ray Greenwell
2010-01-13 19:20:45 +00:00
parent fc187ae697
commit d40a3535e6
@@ -102,13 +102,13 @@ public abstract class ShaderConfig
if (_lights != null) {
other._lights = _lights.clone();
for (int ii = 0; ii < _lights.length; ii++) {
other._lights[ii] = (LightConfig)_lights[ii].clone();
other._lights[ii] = _lights[ii].clone();
}
}
if (_textures != null) {
other._textures = _textures.clone();
for (int ii = 0; ii < _textures.length; ii++) {
other._textures[ii] = (TextureConfig)_textures[ii].clone();
other._textures[ii] = _textures[ii].clone();
}
}
return other;