Subversion Repository Public Repository

litesoft

Diff Revisions 818 vs 819 for /trunk/Java/core/Server/src/org/litesoft/orsup/otherattributeaccessors/AttributeAccessorSCDpath.java

Diff revisions: vs.
  @@ -97,7 +97,7 @@
97 97
98 98 protected static void unacceptableRelationship( Node[] pTarget, int pIndex, String pDottedAttributereference )
99 99 {
100 - LOGGER.error.log( unacceptable( pTarget, pIndex, Utils.toNth( pIndex + 1 ) + " 'pre-dot'" ), tail( pTarget, pIndex, pDottedAttributereference ) );
100 + LOGGER.error.log( unacceptable( pTarget, pIndex, Integers.toNth( pIndex + 1 ) + " 'pre-dot'" ), tail( pTarget, pIndex, pDottedAttributereference ) );
101 101 }
102 102
103 103 protected static String unacceptable( Node[] pTarget, int pIndex, String pWhat )
  @@ -119,7 +119,7 @@
119 119 }
120 120 else
121 121 {
122 - LOGGER.error.log( "Unknown ", Utils.toNth( pIndex + 1 ), " Attribute (", pReference, " on PO: ", pPOmd.getPOregistrationName(), ")", tail( pTarget, pIndex, pDottedAttributereference ) );
122 + LOGGER.error.log( "Unknown ", Integers.toNth( pIndex + 1 ), " Attribute (", pReference, " on PO: ", pPOmd.getPOregistrationName(), ")", tail( pTarget, pIndex, pDottedAttributereference ) );
123 123 }
124 124 return null;
125 125 }
  @@ -137,7 +137,7 @@
137 137 {
138 138 if ( null == (zReferences[i] = Strings.noEmpty( zReferences[i] )) )
139 139 {
140 - throw new IllegalArgumentException( Utils.toNth( i + 1 ) + " Reference empty!" );
140 + throw new IllegalArgumentException( Integers.toNth( i + 1 ) + " Reference empty!" );
141 141 }
142 142 }
143 143 return zReferences;