summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/Source/String.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Private/NewBoot/Source/String.cxx')
-rw-r--r--Private/NewBoot/Source/String.cxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/Private/NewBoot/Source/String.cxx b/Private/NewBoot/Source/String.cxx
index a2d19f1f..e080a01d 100644
--- a/Private/NewBoot/Source/String.cxx
+++ b/Private/NewBoot/Source/String.cxx
@@ -61,28 +61,3 @@ HCore::SizeT BSetMem(CharacterType *src, const CharacterType byte,
return cnt;
}
-
-/////////////////////////////////////////////////////////////////////////////////////////////////////////
-
-/**
-@brief puts wrapper over EFI.
-*/
-BTextWriter &BTextWriter::WriteString(const CharacterType *str) {
- if (*str == 0 || !str) return *this;
-
- ST->ConOut->OutputString(ST->ConOut, str);
-
- return *this;
-}
-
-/**
-@brief putc wrapper over EFI.
-*/
-BTextWriter &BTextWriter::WriteCharacter(CharacterType c) {
- EfiCharType str[2];
- str[0] = c;
- str[1] = 0;
- ST->ConOut->OutputString(ST->ConOut, str);
-
- return *this;
-}