Remove rotate(x, y, z) from Reference

This commit is contained in:
REAS
2015-09-16 20:19:17 -07:00
parent ae0524550a
commit 808aa79127
3 changed files with 16 additions and 2 deletions
@@ -261,8 +261,15 @@ public class Client implements Runnable {
/**
* Return true if this client is still active and hasn't run
* ( begin auto-generated from Client_active.xml )
*
* Returns true if this client is still active and hasn't run
* into any trouble.
*
* ( end auto-generated )
* @webref client:client
* @brief Returns true if this client is still active
* @usage application
*/
public boolean active() {
return (thread != null);
@@ -179,8 +179,14 @@ public class Server implements Runnable {
/**
* Return true if this server is still active and hasn't run
* ( begin auto-generated from Server_active.xml )
*
* Returns true if this server is still active and hasn't run
* into any trouble.
*
* ( end auto-generated )
* @webref server:server
* @brief Return true if this server is still active.
*/
public boolean active() {
return thread != null;