Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 610 for /trunk/Java/InterModuleComm/InterModuleComm/src/InterModuleComm/HelloMessage.java

Diff revisions: vs.
  @@ -71,8 +71,9 @@
71 71
72 72 public static Builder FromParams( String pFromType, String pId )
73 73 {
74 - if ( isAsciiIdentifier( pFromType = noEmpty( pFromType ) ) &&
75 - isNoSpaceAscii( pId = noEmpty( pId ) ) )
74 + pFromType = noEmpty( pFromType );
75 + pId = noEmpty( pId );
76 + if ( isAsciiIdentifier( pFromType ) && isNoSpaceAscii( pId ) )
76 77 {
77 78 return new Builder( pFromType, pId );
78 79 }