File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Assets/MRTK/SDK/Features/Utilities Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ namespace Microsoft.MixedReality.Toolkit.Utilities
12
12
/// requested execution order, or any other priority
13
13
/// mechanism that a subclass utilizes.
14
14
/// </summary>
15
- public class ConstraintExecOrderComparer : IComparer < TransformConstraint >
15
+ internal class ConstraintExecOrderComparer : IComparer < TransformConstraint >
16
16
{
17
17
/// <returns>
18
18
/// Returns < 0 if x should be executed first.
19
19
/// Returns > 0 if y should be executed first.
20
20
/// Returns = 0 if they are of equivalent execution priority.
21
21
/// </returns>
22
- public virtual int Compare ( TransformConstraint x , TransformConstraint y )
22
+ internal virtual int Compare ( TransformConstraint x , TransformConstraint y )
23
23
{
24
24
return x . ExecutionPriority - y . ExecutionPriority ;
25
25
}
You can’t perform that action at this time.
0 commit comments