Subversion Repositories XServices

Compare Revisions

Regard whitespace Rev 93 → Rev 94

/xservices/trunk/src/java/net/brutex/xservices/ws/impl/FileServiceImpl.java
13,6 → 13,8
* See the License for the specific language governing permissions and
* limitations under the License.
*/
 
 
package net.brutex.xservices.ws.impl;
 
import java.io.ByteArrayOutputStream;
/xservices/trunk/src/java/net/brutex/xservices/ws/impl/StringServiceImpl.java
66,8 → 66,10
Matcher matcher = pattern.matcher(res);
StringMatchType rm = new StringMatchType();
while (matcher.find()) {
rm.addStringMatch(matcher.start(), matcher.end(), matcher.group());
for(int i=0; i<=matcher.groupCount();i++){
rm.addStringMatch(matcher.start(), matcher.end(), matcher.group(i));
}
}
return rm;
}