[RFC][Icedtea-Web]: Ensure all ports entered are numeric values
Andrew Su
asu at redhat.com
Fri Apr 8 07:12:07 PDT 2011
Bah, here's the patch.
Sorry for the noise.
----- Original Message -----
> ----- Original Message -----
> > On 04/07/2011 07:34 PM, Dr Andrew John Hughes wrote:
> > > On 17:01 Tue 05 Apr , Omair Majid wrote:
> > >> On 04/05/2011 04:27 PM, Andrew Su wrote:
> > >
> > > snip...
> > >
> > >>> + public void insertString(int offs, String str, AttributeSet a)
> > >>> throws BadLocationException {
> > >>> + if (str != null) {
> > >>> + try {
> > >>> + Integer.valueOf(str);
> > >
> > > What is this line doing? The return value is just thrown away.
> > > If that's deliberate, at least document it.
> > >
> >
> > Integer.valueOf throws an Exception (NumberFormatException to be
> > precise) if the input can not be parsed as a number. That said,
> > since
> > we
> > are already doing Integer.valueOf (on oldString + str) on the next
> > line,
> > perhaps this line can be removed completely?
>
> Yes, you are right we can remove that line completely.
>
> Cheers,
> Andrew
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 20110408_remove_redundant_line.patch
Type: text/x-patch
Size: 789 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20110408/2bfea68d/20110408_remove_redundant_line.patch
More information about the distro-pkg-dev
mailing list