Warning thrown when creating SphereCollisionShape

Whenever I create a SphereCollisionShape when the native bullet libraries, the following warning is thrown:

May 09, 2013 4:39:47 AM com.jme3.bullet.collision.shapes.SphereCollisionShape setScale WARNING: SphereCollisionShape cannot be scaled

This is odd since this doesn’t happen when using jBullet and is annoying fills up the log with useless messages.

Here is the test case:

[java]import com.jme3.app.SimpleApplication;
import com.jme3.bullet.collision.shapes.SphereCollisionShape;

public class Test extends SimpleApplication
{
public static void main(String args)
{
new Test().start();
}

@Override
public void simpleInitApp()
{
    SphereCollisionShape sphere = new SphereCollisionShape(1f); // Logs warning
}

}[/java]

I’m also using the latest nightly.