streamlet-examples/cloc
branchv_0
changeset 70 018e2609f5bb
parent 50 22ed5647b235
--- a/streamlet-examples/cloc	Tue Jan 28 23:35:25 2020 +0100
+++ b/streamlet-examples/cloc	Wed Jan 29 00:58:37 2020 +0100
@@ -64,9 +64,8 @@
 	for (( i=0; i<${#clocFields[@]}; i++)); do
 		value="${!clocFields[$i]}";
 
-		if [[ "x$files" == "x1" ]]; then                                isNull="false";
-		elif [[ "x${clocFields[$i]}" == "xlanguage" ]]; then value="";  isNull="true";
-		else                                                 value="0"; isNull="true"; fi
+		if [[ "x$files" == "x1" ]]; then isNull="false";
+		else                             isNull="true"; fi
 
 		send OUTPUT_ATTRIBUTE "$value"    "$isNull";
 	done