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 8d1a96de65 Don't deprecate yet. 8d1a96de65 is described below commit 8d1a96de65917b025f6962c3e146411d7c33ffcd Author: Harbs <ha...@in-tools.com> AuthorDate: Tue Jan 16 18:04:24 2024 +0200 Don't deprecate yet. --- .../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 476e8acf17..1900469d96 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.number.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);