diff options
author | xue <> | 2006-01-18 02:45:34 +0000 |
---|---|---|
committer | xue <> | 2006-01-18 02:45:34 +0000 |
commit | e4fee00917f01b9c1358ac87d1929324141f90bd (patch) | |
tree | 948d2c021e04bb2064a5c5cbca699ac26b76db0b | |
parent | 57b6793551d29bad2b3b89f9a3f77a11682ccb48 (diff) |
TTextWriter moved to core.php
-rw-r--r-- | .gitattributes | 1 | ||||
-rw-r--r-- | framework/IO/TTextWriter.php | 25 |
2 files changed, 0 insertions, 26 deletions
diff --git a/.gitattributes b/.gitattributes index cc104658..0c5aa5cc 100644 --- a/.gitattributes +++ b/.gitattributes @@ -445,7 +445,6 @@ framework/I18N/core/data/zh_TW.dat -text framework/I18N/core/util.php -text framework/I18N/schema/mysql.sql -text framework/I18N/schema/sqlite.sql -text -framework/IO/TTextWriter.php -text framework/Log/TLogRouter.php -text framework/Log/TLogger.php -text framework/Security/TAuthManager.php -text diff --git a/framework/IO/TTextWriter.php b/framework/IO/TTextWriter.php deleted file mode 100644 index 5f6a92cb..00000000 --- a/framework/IO/TTextWriter.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php
-
-class TTextWriter extends TComponent implements ITextWriter
-{
- private $_str='';
-
- public function flush()
- {
- $str=$this->_str;
- $this->_str='';
- return $str;
- }
-
- public function write($str)
- {
- $this->_str.=$str;
- }
-
- public function writeLine($str='')
- {
- $this->write($str."\n");
- }
-}
-
-?>
\ No newline at end of file |