Removed chat wrapping, deprecated TextWrapper

This commit is contained in:
Shoghi Cervantes
2015-02-16 23:44:22 +01:00
parent d80b8524fb
commit 696ba08a81
3 changed files with 13 additions and 2 deletions

View File

@ -21,6 +21,10 @@
namespace pocketmine\utils;
/**
* @deprecated
*/
abstract class TextWrapper{
private static $characterWidths = [
@ -47,6 +51,13 @@ abstract class TextWrapper{
}
}
/**
* @deprecated
*
* @param $text
*
* @return string
*/
public static function wrap($text){
$result = "";
$len = strlen($text);