diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-01-04 20:26:22 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-01-04 20:42:50 +0100 |
commit | ba2bdc478b9eaad99b6c2a3c860e3dc0fe73a1a6 (patch) | |
tree | 7a76d22a16a123e7fbd91e48d234667276ab4f13 /modules/bullet/joint_bullet.h | |
parent | 42312f066bd7fc5eb66abb5a2d7161717ceb3c55 (diff) |
Style: Remove inconsistently used `@author` docstrings
Each file in Godot has had multiple contributors who co-authored it over the
years, and the information of who was the original person to create that file
is not very relevant, especially when used so inconsistently.
`git blame` is a much better way to know who initially authored or later
modified a given chunk of code, and most IDEs now have good integration to
show this information.
Diffstat (limited to 'modules/bullet/joint_bullet.h')
-rw-r--r-- | modules/bullet/joint_bullet.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/modules/bullet/joint_bullet.h b/modules/bullet/joint_bullet.h index 75f6055b2f..427221dd77 100644 --- a/modules/bullet/joint_bullet.h +++ b/modules/bullet/joint_bullet.h @@ -34,18 +34,15 @@ #include "constraint_bullet.h" #include "servers/physics_server_3d.h" -/** - @author AndreaCatania -*/ - class RigidBodyBullet; class btTypedConstraint; class JointBullet : public ConstraintBullet { public: - JointBullet(); - virtual ~JointBullet(); + JointBullet() {} + virtual ~JointBullet() {} virtual PhysicsServer3D::JointType get_type() const = 0; }; -#endif + +#endif // JOINT_BULLET_H |