~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to systemtap/org.eclipse.linuxtools.systemtap.ui.graphingapi.ui/src/org/eclipse/linuxtools/systemtap/ui/graphingapi/ui/wizards/filter/AvailableFilterTypes.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-13 21:43:22 UTC
  • mfrom: (1.2.1) (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130513214322-6frgd9du1n0w2uo7
Tags: 1.2.1-1
* Team upload.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
                        
92
92
                        Number low, high;
93
93
                        if(l.contains("."))
94
 
                                low = new Double(Double.parseDouble(l));
 
94
                                low = Double.valueOf(l);
95
95
                        else
96
 
                                low = new Long(Long.parseLong(l));
 
96
                                low = Long.valueOf(l);
97
97
                        if(h.contains("."))
98
 
                                high = new Double(Double.parseDouble(h));
 
98
                                high = Double.valueOf(h);
99
99
                        else
100
 
                                high = new Long(Long.parseLong(h));
 
100
                                high = Long.valueOf(h);
101
101
                        
102
102
                        return new RangeFilter(column, low, high, style);
103
103
                case 2: