Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/core/Anywhere/src/org/litesoft/uipopupsupport/SourceRelativeContextPopupPositioner.java

Diff revisions: vs.
  @@ -2,6 +2,7 @@
2 2 package org.litesoft.uipopupsupport;
3 3
4 4 import org.litesoft.core.simpletypes.*;
5 + import org.litesoft.core.typeutils.*;
5 6 import org.litesoft.core.util.*;
6 7
7 8 public class SourceRelativeContextPopupPositioner extends ContextPopupPositioner
  @@ -10,8 +11,8 @@
10 11 CommonRectangularPoint pSourceElementRelativeMeetingPoint, Rect pSourceElementRect )
11 12 {
12 13 super( pRectangleContainmentStrategy, pPopupRelativeMeetingPoint, pClientPos, pClientSize );
13 - UtilsCommon.assertNotNull( "SourceElementRelativeMeetingPoint", mSourceElementRelativeMeetingPoint = pSourceElementRelativeMeetingPoint );
14 - UtilsCommon.assertNotNull( "SourceElementRect", mSourceElementRect = pSourceElementRect );
14 + Objects.assertNotNull( "SourceElementRelativeMeetingPoint", mSourceElementRelativeMeetingPoint = pSourceElementRelativeMeetingPoint );
15 + Objects.assertNotNull( "SourceElementRect", mSourceElementRect = pSourceElementRect );
15 16 }
16 17
17 18 public StringBuilder toStringBuilder()