diff --git a/src/openms/include/OpenMS/CHEMISTRY/AAIndex.h b/src/openms/include/OpenMS/CHEMISTRY/AAIndex.h index ada6b391d86..f1493aafe43 100644 --- a/src/openms/include/OpenMS/CHEMISTRY/AAIndex.h +++ b/src/openms/include/OpenMS/CHEMISTRY/AAIndex.h @@ -40,9 +40,12 @@ namespace OpenMS @ingroup Chemistry */ - class OPENMS_DLLAPI AAIndex + class AAIndex { + public: + /// Constructor not implemented + AAIndex() = delete; /// Returns if the residue is aliphatic (1.0 or 0.0) static double aliphatic(char aa) @@ -1233,11 +1236,6 @@ namespace OpenMS throw Exception::InvalidValue(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, "Unknown amino acid one-letter-code", String(aa)); } } - -private: - - ///Constructor not implemented => private - AAIndex(); }; }