Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 801 for /trunk/Java/core/jvm1.5/src/org/litesoft/util/tempdirimageaccessor/FileNameParts.java

Diff revisions: vs.
  @@ -3,6 +3,7 @@
3 3
4 4 import java.io.*;
5 5
6 + import org.litesoft.core.typeutils.*;
6 7 import org.litesoft.util.*;
7 8
8 9 public class FileNameParts
  @@ -183,7 +184,7 @@
183 184 */
184 185 private void setPrefix( String pPrefix )
185 186 {
186 - String str = Utils.noEmpty( pPrefix );
187 + String str = Strings.noEmpty( pPrefix );
187 188 if ( str != null )
188 189 {
189 190 if ( str.length() < 3 )
  @@ -258,7 +259,7 @@
258 259 private void setImageEncoding( String pImageEncoding )
259 260 throws IllegalArgumentException
260 261 {
261 - String str = Utils.noEmpty( pImageEncoding );
262 + String str = Strings.noEmpty( pImageEncoding );
262 263 if ( str != null )
263 264 {
264 265 Utils.assertAll7BitAsciiAlpha( "ImageEncoding", str = str.toUpperCase() );
  @@ -307,7 +308,7 @@
307 308 // Kinda (drop leading '0' from UTF-16 characters) Hex encode the passed string
308 309 private static String encodeExtraInfo( String pExtraInfo )
309 310 {
310 - if ( null == (pExtraInfo = Utils.noEmpty( pExtraInfo )) )
311 + if ( null == (pExtraInfo = Strings.noEmpty( pExtraInfo )) )
311 312 {
312 313 return "";
313 314 }