LibGfx+Tests: Remove code unnecessary after 9e7c16d0a4

This commit is contained in:
Nico Weber 2023-01-31 18:58:40 -05:00 committed by Tim Flynn
parent bea3f3fc46
commit c8832807d6
2 changed files with 0 additions and 10 deletions

View file

@ -11,15 +11,6 @@
#include <LibGfx/Painter.h>
#include <stdio.h>
// Make sure that no matter what order tests are run in, we've got some
// default fonts for the application to use without talking to WindowServer
static struct FontDatabaseSpoofer {
FontDatabaseSpoofer()
{
Gfx::FontDatabase::the().set_default_font_query("Katica 10 400 0"sv);
}
} g_spoof;
BENCHMARK_CASE(diagonal_lines)
{
int const run_count = 50;

View file

@ -14,7 +14,6 @@
#include "Bitmap.h"
#include "Font/Emoji.h"
#include "Font/Font.h"
#include "Font/FontDatabase.h"
#include "Gamma.h"
#include <AK/Assertions.h>
#include <AK/Debug.h>