From 20e9630ff2cea3a54614d049549d92d5fe9f38bf Mon Sep 17 00:00:00 2001 From: BevapDin Date: Sat, 9 Nov 2019 18:55:29 +0100 Subject: [PATCH] Remove unused entry in FILENAMES map. The value for key "recycledir" is never read, so it does not need to exist within the map. --- src/path_info.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/path_info.cpp b/src/path_info.cpp index 3154a57556acf..60e308dc7b84a 100644 --- a/src/path_info.cpp +++ b/src/path_info.cpp @@ -73,7 +73,6 @@ void PATH_INFO::update_datadir() update_pathname( "rawdir", FILENAMES["datadir"] + "raw/" ); update_pathname( "jsondir", FILENAMES["datadir"] + "core/" ); update_pathname( "moddir", FILENAMES["datadir"] + "mods/" ); - update_pathname( "recycledir", FILENAMES["datadir"] + "recycling/" ); update_pathname( "namesdir", FILENAMES["datadir"] + "names/" ); update_pathname( "titledir", FILENAMES["datadir"] + "title/" ); update_pathname( "motddir", FILENAMES["datadir"] + "motd/" );