Skip to content

Commit

Permalink
[12_18] Remove tmfs_url
Browse files Browse the repository at this point in the history
  • Loading branch information
da-liii authored Sep 26, 2023
1 parent 31d12b0 commit 02306d6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 74 deletions.
44 changes: 0 additions & 44 deletions System/Classes/tmfs_url.cpp

This file was deleted.

28 changes: 0 additions & 28 deletions System/Classes/tmfs_url.hpp

This file was deleted.

2 changes: 0 additions & 2 deletions System/Classes/url.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#include "analyze.hpp"
#include "sys_utils.hpp"
#include "tbox/tbox.h"
#include "tmfs_url.hpp"
#include <ctype.h>

#if defined(OS_MINGW) || defined(OS_WIN)
Expand Down Expand Up @@ -249,7 +248,6 @@ url_general (string name, int type= URL_SYSTEM) {
if (starts (name, "http://")) return http_url (name (7, N (name)));
if (starts (name, "https://")) return https_url (name (8, N (name)));
if (starts (name, "ftp://")) return ftp_url (name (6, N (name)));
if (starts (name, "tmfs://")) return tmfs_url (name (7, N (name)));
if (starts (name, "//")) return blank_url (name (2, N (name)));
if (heuristic_is_path (name, type)) return url_path (name, type);
if (heuristic_is_default (name, type)) return url_default (name, type);
Expand Down

0 comments on commit 02306d6

Please sign in to comment.