From 97b99204a993915951a738403e16688dd52e4664 Mon Sep 17 00:00:00 2001 From: chrisgregan Date: Fri, 14 Aug 2015 15:32:20 +0100 Subject: [PATCH] Removed Debug.Log() from CSV parsing test --- Assets/Tests/Localisation/Scripts/TestLoadingCSV.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Assets/Tests/Localisation/Scripts/TestLoadingCSV.cs b/Assets/Tests/Localisation/Scripts/TestLoadingCSV.cs index 3fa97ce2..db72b24c 100644 --- a/Assets/Tests/Localisation/Scripts/TestLoadingCSV.cs +++ b/Assets/Tests/Localisation/Scripts/TestLoadingCSV.cs @@ -27,8 +27,6 @@ namespace Fungus bool ParseCSV(string text) { - Debug.Log (text); - CsvParser csvParser = new CsvParser(); string[][] csvTable = csvParser.Parse(text);