1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Removed unused method

This commit is contained in:
ed 2019-03-05 17:23:34 +00:00
parent 7add963d40
commit 4bedc679b1
2 changed files with 0 additions and 16 deletions

View file

@ -45,20 +45,6 @@ void Logger::writeToLog (const String& message)
outputDebugString (message); outputDebugString (message);
} }
void Logger::print10000thCommitMessage()
{
writeToLog (R"CAKE(
) ( ) (
(^)(^)(^)(^)
_i__i__i__i_
(____________)
|####10000###|
(____________)
)CAKE");
}
#if JUCE_LOG_ASSERTIONS || JUCE_DEBUG #if JUCE_LOG_ASSERTIONS || JUCE_DEBUG
void JUCE_API JUCE_CALLTYPE logAssertion (const char* const filename, const int lineNum) noexcept void JUCE_API JUCE_CALLTYPE logAssertion (const char* const filename, const int lineNum) noexcept
{ {

View file

@ -74,8 +74,6 @@ public:
*/ */
static void JUCE_CALLTYPE outputDebugString (const String& text); static void JUCE_CALLTYPE outputDebugString (const String& text);
/** Writes a celebratory message to the current logger. */
static void JUCE_CALLTYPE print10000thCommitMessage();
protected: protected:
//============================================================================== //==============================================================================