This is an automated email from the ASF dual-hosted git repository.
harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new a8835cc079 Fixed package name
a8835cc079 is described below
commit a8835cc079825511d2da79bb29e495771b618287
Author: Harbs <[email protected]>
AuthorDate: Tue Jan 16 17:22:15 2024 +0200
Fixed package name
---
.../Core/src/main/royale/org/apache/royale/utils/number/pinValue.as | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/number/pinValue.as
b/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/number/pinValue.as
index bbdfefc84a..476e8acf17 100644
---
a/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/number/pinValue.as
+++
b/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/number/pinValue.as
@@ -22,7 +22,7 @@ package org.apache.royale.utils.number
* Pins the specified value between a specified maximum and minimum
bounds.
* If the value is outside the bounds, the minimum or maximum is
returned.
*/
- [Deprecated(replacement="org.apache.royale.utils.math.clamp",
since="0.9.11")]
+ [Deprecated(replacement="org.apache.royale.utils.number.clamp",
since="0.9.11")]
public function pinValue(value:Number, minimum:Number,
maximum:Number):Number
{
return Math.min(Math.max(value, minimum), maximum);