Merge pull request #42 from Ubiquiti-TeleFi/boundary

Remove dead code
diff --git a/src/folsom_vm_metrics.erl b/src/folsom_vm_metrics.erl
index c5391af..4ff72d1 100644
--- a/src/folsom_vm_metrics.erl
+++ b/src/folsom_vm_metrics.erl
@@ -69,10 +69,6 @@
 
 convert_statistics({context_switches, {ContextSwitches, 0}}) ->
     ContextSwitches;
-convert_statistics({exact_reductions, {TotalExactReductions,
-                                        ExactReductionsSinceLastCall}}) ->
-    [{"total_exact_reductions", TotalExactReductions},
-     {"exact_reductions_since_last_call", ExactReductionsSinceLastCall}];
 convert_statistics({garbage_collection, {NumberofGCs, WordsReclaimed, 0}}) ->
     [{"number_of_gcs", NumberofGCs}, {"words_reclaimed", WordsReclaimed}];
 convert_statistics({io, {Input, Output}}) ->