浏览代码

chore: remove debug print statements

Remove leftover debug output from ByteBuffer, Promotion, and BinaryData modules
Billy Barrow 1 周之前
父节点
当前提交
a1ab95e0c7
共有 3 个文件被更改,包括 0 次插入3 次删除
  1. 0 1
      src/lib/DataStructures/ByteBuffer.vala
  2. 0 1
      src/lib/Promotion.vala
  3. 0 1
      src/lib/Promotions/BinaryData.vala

+ 0 - 1
src/lib/DataStructures/ByteBuffer.vala

@@ -12,7 +12,6 @@ namespace Invercargill.DataStructures {
         }
 
         protected BinaryData adhere(Enumerable<uint8> enumerable) {
-            print("Adhere\n");
             return enumerable.assert_promotion<BinaryData>();
         }
 

+ 0 - 1
src/lib/Promotion.vala

@@ -17,7 +17,6 @@ namespace Invercargill {
         Type promotion;
         if(promotion_registry.try_get(typeof(T), out promotion)) {
             type = promotion;
-            print(@"Mapped $(typeof(T).name()) -> $(promotion.name())\n");
         }
     }
 

+ 0 - 1
src/lib/Promotions/BinaryData.vala

@@ -26,7 +26,6 @@ namespace Invercargill {
         }
 
         public virtual ByteBuffer to_byte_buffer() {
-            print("hello?\n");
             return new ByteBuffer.from_enumerable(this);
         }