1
0
Fork 0

return false/true

master
Christopher 2020-07-01 18:11:39 +02:00
Ursprung c9e178b8bb
Commit 060761b987
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -296,7 +296,7 @@ namespace OpenSim.Modules.EMail
public bool isUUID(string thing) public bool isUUID(string thing)
{ {
UUID test; UUID test;
return UUID.TryParse(thing, out test) ? 1 : 0; return UUID.TryParse(thing, out test) ? true : false;
} }
} }
} }