Skip to content

Commit

Permalink
solve some javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 24, 2021
1 parent e1bb027 commit 1a1eef8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -783,8 +783,8 @@ private void setUpBowlingPin(Vector3f location) {
* Set up a single brick as a target.
*
* @param shapeName
* @param height half the desired height (in world units, >0)
* @param length half the desired length (in world units, >0)
* @param location the desired world location (not null, unaffected)
* @param orientation the desired world orientation (not null, unaffected)
*/
private void setUpBrick(String shapeName, Vector3f location,
Quaternion orientation) {
Expand Down Expand Up @@ -922,7 +922,6 @@ private void setUpCanPyramid(int numRows) {
/**
* Set up a single domino as a target.
*
* @param length the desired length (in world units, >0)
* @param location the desired location (in physics-space coordinates, not
* null, unaffected)
* @param orientation the desired orientation (in physics-space coordinates,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ public PhysicsDescriber getDescriber() {
* Print the activation state of the specified rigid body, unless it happens
* to be in the expected state.
*
* @param rigidBody (not null, unaffected)
* @param body (not null, unaffected)
*/
private void addActivationState(PhysicsRigidBody body) {
int expectedState;
Expand All @@ -1112,7 +1112,7 @@ private void addActivationState(PhysicsRigidBody body) {
/**
* Print the contact parameters of the specified rigid body.
*
* @param rigidBody (not null, unaffected)
* @param body (not null, unaffected)
*/
private void addContactParameters(PhysicsRigidBody body) {
float fric = body.getFriction();
Expand Down

0 comments on commit 1a1eef8

Please sign in to comment.