Remove all CoreLibs\Basic references in admin class test file

This commit is contained in:
Clemens Schwaighofer
2022-03-16 10:27:31 +09:00
parent 105e0d69a1
commit 7d1d795b29
26 changed files with 24 additions and 179 deletions

View File

@@ -41,7 +41,6 @@ $log = new CoreLibs\Debug\Logging([
'echo_all' => $ECHO_ALL ?? false,
'print_all' => $PRINT_ALL ?? false,
]);
$basic = new CoreLibs\Basic($log);
$byte_class = 'CoreLibs\Convert\Byte';
print "<html><head><title>TEST CLASS: BYTE CONVERT</title><head>";
@@ -107,12 +106,6 @@ foreach ($bytes as $byte) {
print "</div>";
}
// DEPRECATED
/* $byte = 254779258;
$string = '242.98 MB';
print "BYTE TO: $byte: ".$basic->humanReadableByteFormat($byte)."<br>";
print "BYTE FROM: $string: ".$basic->stringByteFormat($string)."<br>"; */
// error message
print $log->printErrorMsg();