removed old metatag

This commit is contained in:
Djeeberjr 2022-03-13 22:29:37 +01:00
parent a1bb41f8a2
commit fa62e3a2eb
2 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ abstract WriteBinaryHandle(FileHandle) from FileHandle {
}
}
@:enum abstract BinarySeekWhence(String) to String {
enum abstract BinarySeekWhence(String) to String {
var Set = "set"; // Relative to the beginning of the file.
var Current = "cur"; // Relative to the current position. This is the default.
var End = "end"; // Relative to the end of the file.

View File

@ -1,6 +1,6 @@
package kernel.http;
@:enum abstract StatusCode(Int) from Int {
enum abstract StatusCode(Int) from Int {
var Continue = 100;
var SwitchingProtocols = 101;
var Processing = 102;