commentfix

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5650 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Tom Conkling
2009-02-06 21:24:41 +00:00
parent 65f4810832
commit bb9f068782
+4 -4
View File
@@ -98,8 +98,8 @@ public class Throttle
}
/**
* Registers an attempt at an operation and returns true if the operation should be performed
* or false if it should be throttled (meaning N operations have already been performed in the
* Registers an attempt at an operation and returns false if the operation should be performed
* or true if it should be throttled (meaning N operations have already been performed in the
* last M seconds).
*
* @return true if the throttle is activated, false if the operation can proceed.
@@ -110,8 +110,8 @@ public class Throttle
}
/**
* Registers an attempt at an operation and returns true if the operation should be performed
* or false if it should be throttled (meaning N operations have already been performed in the
* Registers an attempt at an operation and returns false if the operation should be performed
* or true if it should be throttled (meaning N operations have already been performed in the
* last M seconds).
*
* @param timeStamp the timestamp at which this operation is being attempted.