diff options
author | Kevin Cozens | 2014-09-03 14:14:26 -0400 |
---|---|---|
committer | Kevin Cozens | 2014-09-03 14:17:37 -0400 |
commit | 40c579addf86b4dff23cf67062a879e95e89bf51 (patch) | |
tree | caeb89c00d36252fbbf92bb88c017b4dc08dafad | |
parent | Remove the 32 bit launchers as discussed at OpenSimulator Office Hour 9//2/14... (diff) | |
download | opensim-SC_OLD-40c579addf86b4dff23cf67062a879e95e89bf51.zip opensim-SC_OLD-40c579addf86b4dff23cf67062a879e95e89bf51.tar.gz opensim-SC_OLD-40c579addf86b4dff23cf67062a879e95e89bf51.tar.bz2 opensim-SC_OLD-40c579addf86b4dff23cf67062a879e95e89bf51.tar.xz |
Don't show the ScrLPS data twice in the WebStats based statistics page.
-rw-r--r-- | OpenSim/Region/UserStatistics/SimStatsAJAX.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/OpenSim/Region/UserStatistics/SimStatsAJAX.cs b/OpenSim/Region/UserStatistics/SimStatsAJAX.cs index ad848a1..06d9e91 100644 --- a/OpenSim/Region/UserStatistics/SimStatsAJAX.cs +++ b/OpenSim/Region/UserStatistics/SimStatsAJAX.cs | |||
@@ -162,9 +162,6 @@ namespace OpenSim.Region.UserStatistics | |||
162 | output.Append("OthrMS"); | 162 | output.Append("OthrMS"); |
163 | HTMLUtil.TD_C(ref output); | 163 | HTMLUtil.TD_C(ref output); |
164 | HTMLUtil.TD_O(ref output, TDHeaderClass); | 164 | HTMLUtil.TD_O(ref output, TDHeaderClass); |
165 | output.Append("ScrLPS"); | ||
166 | HTMLUtil.TD_C(ref output); | ||
167 | HTMLUtil.TD_O(ref output, TDHeaderClass); | ||
168 | output.Append("OutPPS"); | 165 | output.Append("OutPPS"); |
169 | HTMLUtil.TD_C(ref output); | 166 | HTMLUtil.TD_C(ref output); |
170 | HTMLUtil.TD_O(ref output, TDHeaderClass); | 167 | HTMLUtil.TD_O(ref output, TDHeaderClass); |
@@ -194,9 +191,6 @@ namespace OpenSim.Region.UserStatistics | |||
194 | output.Append(sdata.OtherFrameTime); | 191 | output.Append(sdata.OtherFrameTime); |
195 | HTMLUtil.TD_C(ref output); | 192 | HTMLUtil.TD_C(ref output); |
196 | HTMLUtil.TD_O(ref output, TDDataClassCenter); | 193 | HTMLUtil.TD_O(ref output, TDDataClassCenter); |
197 | output.Append(sdata.ScriptLinesPerSecond); | ||
198 | HTMLUtil.TD_C(ref output); | ||
199 | HTMLUtil.TD_O(ref output, TDDataClassCenter); | ||
200 | output.Append(sdata.OutPacketsPerSecond); | 194 | output.Append(sdata.OutPacketsPerSecond); |
201 | HTMLUtil.TD_C(ref output); | 195 | HTMLUtil.TD_C(ref output); |
202 | HTMLUtil.TD_O(ref output, TDDataClassCenter); | 196 | HTMLUtil.TD_O(ref output, TDDataClassCenter); |