Move to i_s / p_s and add user info (not quite complete)
[pstop.git] / performance_schema / relative_stats.go
diff --git a/performance_schema/relative_stats.go b/performance_schema/relative_stats.go
deleted file mode 100644 (file)
index 2a9ec2e..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// performance_schema - library routines for pstop.
-//
-// want_relative_stats
-package performance_schema
-
-// a table of rows
-type RelativeStats struct {
-       want_relative_stats bool
-}
-
-func (wrs *RelativeStats) SetWantRelativeStats(want_relative_stats bool) {
-       wrs.want_relative_stats = want_relative_stats
-}
-
-func (wrs RelativeStats) WantRelativeStats() bool {
-       return wrs.want_relative_stats
-}