Changeset 8377 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2015-05-17T04:02:42+02:00 (9 years ago)
Author:
Don-vip
Message:

performance - remove useless boxing of boolean constants

Location:
trunk/src/org/openstreetmap/josm
Files:
38 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/CloseChangesetAction.java

    r8291 r8377  
    8484        private UserInfo userInfo;
    8585
    86         public DownloadOpenChangesetsTask() {
    87             super(tr("Downloading open changesets ...", false /* don't ignore exceptions */));
     86        private DownloadOpenChangesetsTask() {
     87            super(tr("Downloading open changesets ..."), false /* don't ignore exceptions */);
    8888        }
    8989
  • trunk/src/org/openstreetmap/josm/actions/DistributeAction.java

    r8247 r8377  
    111111     * @return true in this case
    112112     */
    113     private Boolean checkDistributeWay(Collection<Way> ways, Collection<Node> nodes) {
     113    private boolean checkDistributeWay(Collection<Way> ways, Collection<Node> nodes) {
    114114        if(ways.size() == 1 && nodes.size() <= 2) {
    115115            Way w = ways.iterator().next();
  • trunk/src/org/openstreetmap/josm/actions/ImageryAdjustAction.java

    r8308 r8377  
    5757                tr("Adjust the position of this imagery layer"), Main.map,
    5858                cursor);
    59         putValue("toolbar", false);
     59        putValue("toolbar", Boolean.FALSE);
    6060        this.layer = layer;
    6161    }
  • trunk/src/org/openstreetmap/josm/actions/mapmode/MapMode.java

    r6889 r8377  
    3636        super(name, "mapmode/"+iconName, tooltip, shortcut, false);
    3737        this.cursor = cursor;
    38         putValue("active", false);
     38        putValue("active", Boolean.FALSE);
    3939    }
    4040
     
    5353     */
    5454    public void enterMode() {
    55         putValue("active", true);
     55        putValue("active", Boolean.TRUE);
    5656        Main.map.mapView.setNewCursor(cursor, this);
    5757        updateStatusLine();
     
    6262     */
    6363    public void exitMode() {
    64         putValue("active", false);
     64        putValue("active", Boolean.FALSE);
    6565        Main.map.mapView.resetCursor(this);
    6666    }
  • trunk/src/org/openstreetmap/josm/actions/search/SearchAction.java

    r8345 r8377  
    505505                if (s.mode == SearchMode.replace) {
    506506                    if (matcher.match(osm)) {
    507                         p.set(osm, true);
     507                        p.set(osm, Boolean.TRUE);
    508508                    } else {
    509                         p.set(osm, false);
     509                        p.set(osm, Boolean.FALSE);
    510510                    }
    511511                } else if (s.mode == SearchMode.add && !p.get(osm) && matcher.match(osm)) {
    512                     p.set(osm, true);
     512                    p.set(osm, Boolean.TRUE);
    513513                } else if (s.mode == SearchMode.remove && p.get(osm) && matcher.match(osm)) {
    514                     p.set(osm, false);
     514                    p.set(osm, Boolean.FALSE);
    515515                } else if (s.mode == SearchMode.in_selection && p.get(osm) && !matcher.match(osm)) {
    516                     p.set(osm, false);
     516                    p.set(osm, Boolean.FALSE);
    517517                }
    518518            }
     
    523523                    tr("Error"),
    524524                    JOptionPane.ERROR_MESSAGE
    525 
    526525            );
    527526        }
  • trunk/src/org/openstreetmap/josm/data/notes/NoteComment.java

    r7451 r8377  
    1818
    1919    //not currently used. I'm planning on using this to keep track of new actions that need to be uploaded
    20     private Boolean isNew;
     20    private boolean isNew;
    2121
    2222    /**
     
    3333     * @param isNew Whether or not this comment is new and needs to be uploaded
    3434     */
    35     public NoteComment(Date createDate, User user, String commentText, Action action, Boolean isNew) {
     35    public NoteComment(Date createDate, User user, String commentText, Action action, boolean isNew) {
    3636        this.text = commentText;
    3737        this.user = user;
     
    6161    }
    6262
    63     public void setIsNew(Boolean isNew) {
     63    public void setIsNew(boolean isNew) {
    6464        this.isNew = isNew;
    6565    }
    6666
    6767    /** @return true if this is a new comment/action and needs to be uploaded to the API */
    68     public Boolean getIsNew() {
     68    public boolean getIsNew() {
    6969        return isNew;
    7070    }
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java

    r8364 r8377  
    954954            Node firstNode = viaWay.firstNode();
    955955            Node lastNode = viaWay.lastNode();
    956             Boolean onewayvia = false;
     956            Boolean onewayvia = Boolean.FALSE;
    957957
    958958            String onewayviastr = viaWay.get("oneway");
    959959            if(onewayviastr != null) {
    960960                if("-1".equals(onewayviastr)) {
    961                     onewayvia = true;
     961                    onewayvia = Boolean.TRUE;
    962962                    Node tmp = firstNode;
    963963                    firstNode = lastNode;
     
    966966                    onewayvia = OsmUtils.getOsmBoolean(onewayviastr);
    967967                    if (onewayvia == null) {
    968                         onewayvia = false;
     968                        onewayvia = Boolean.FALSE;
    969969                    }
    970970                }
  • trunk/src/org/openstreetmap/josm/data/validation/TestError.java

    r8346 r8377  
    3333public class TestError implements Comparable<TestError>, DataSetListener {
    3434    /** is this error on the ignore list */
    35     private Boolean ignored = false;
     35    private boolean ignored = false;
    3636    /** Severity */
    3737    private Severity severity;
     
    208208    }
    209209
    210     public Boolean getIgnored() {
     210    public boolean getIgnored() {
    211211        return ignored;
    212212    }
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r8356 r8377  
    349349        }
    350350
    351         Boolean skipLoadingPlugins = false;
     351        boolean skipLoadingPlugins = false;
    352352        if (args.containsKey(Option.SKIP_PLUGINS)) {
    353353            skipLoadingPlugins = true;
  • trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java

    r8308 r8377  
    774774    }
    775775
    776     public static interface FreezeActionProperties {
     776    private static interface FreezeActionProperties {
    777777        String PROP_SELECTED = FreezeActionProperties.class.getName() + ".selected";
    778778    }
     
    782782     *
    783783     */
    784     class FreezeAction extends AbstractAction implements ItemListener, FreezeActionProperties  {
    785 
    786         public FreezeAction() {
     784    private class FreezeAction extends AbstractAction implements ItemListener, FreezeActionProperties  {
     785
     786        private FreezeAction() {
    787787            putValue(Action.NAME, tr("Freeze"));
    788788            putValue(Action.SHORT_DESCRIPTION, tr("Freeze the current list of merged elements."));
    789             putValue(PROP_SELECTED, false);
     789            putValue(PROP_SELECTED, Boolean.FALSE);
    790790            setEnabled(true);
    791791        }
  • trunk/src/org/openstreetmap/josm/gui/dialogs/LayerListDialog.java

    r8345 r8377  
    173173        layerList.addMouseListener(new PopupMenuHandler());
    174174        layerList.setBackground(UIManager.getColor("Button.background"));
    175         layerList.putClientProperty("terminateEditOnFocusLost", true);
    176         layerList.putClientProperty("JTable.autoStartsEdit", false);
     175        layerList.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
     176        layerList.putClientProperty("JTable.autoStartsEdit", Boolean.FALSE);
    177177        layerList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
    178178        layerList.setTableHeader(null);
  • trunk/src/org/openstreetmap/josm/gui/dialogs/MapPaintDialog.java

    r8376 r8377  
    140140        tblStyles.setSelectionModel(selectionModel= new DefaultListSelectionModel());
    141141        tblStyles.addMouseListener(new PopupMenuHandler());
    142         tblStyles.putClientProperty("terminateEditOnFocusLost", true);
     142        tblStyles.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
    143143        tblStyles.setBackground(UIManager.getColor("Panel.background"));
    144144        tblStyles.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
  • trunk/src/org/openstreetmap/josm/gui/dialogs/ToggleDialog.java

    r8346 r8377  
    312312        setIsShowing(true);
    313313        windowMenuItem.setState(true);
    314         toggleAction.putValue("selected", false);
    315         toggleAction.putValue("selected", true);
     314        toggleAction.putValue("selected", Boolean.FALSE);
     315        toggleAction.putValue("selected", Boolean.TRUE);
    316316    }
    317317
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/ChangesetQueryTask.java

    r8291 r8377  
    3333/**
    3434 * Asynchronous task to send a changeset query to the OSM API.
    35  *
     35 * @since 2689
    3636 */
    3737public class ChangesetQueryTask extends PleaseWaitRunnable implements ChangesetDownloadTask{
     
    5757     */
    5858    public ChangesetQueryTask(ChangesetQuery query) {
    59         super(tr("Querying and downloading changesets",false /* don't ignore exceptions */));
     59        super(tr("Querying and downloading changesets"), false /* don't ignore exceptions */);
    6060        CheckParameterUtil.ensureParameterNotNull(query, "query");
    6161        this.query = query;
  • trunk/src/org/openstreetmap/josm/gui/history/VersionTable.java

    r8308 r8377  
    5555        setBackground(UIManager.getColor("Button.background"));
    5656        setIntercellSpacing(new Dimension(6, 0));
    57         putClientProperty("terminateEditOnFocusLost", true);
     57        putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
    5858        popupMenu = new VersionTablePopupMenu();
    5959        addMouseListener(new MouseListener());
  • trunk/src/org/openstreetmap/josm/gui/io/RecentlyOpenedFilesMenu.java

    r8285 r8377  
    5959                    putValue(NAME, file);
    6060                    putValue("help", ht("/Action/OpenRecent"));
    61                     putValue("toolbar", false);
     61                    putValue("toolbar", Boolean.FALSE);
    6262                }
    6363                @Override
  • trunk/src/org/openstreetmap/josm/gui/mappaint/ElemStyle.java

    r8346 r8377  
    4040        zIndex = c.get(Z_INDEX, 0f, Float.class);
    4141        objectZIndex = c.get(OBJECT_Z_INDEX, 0f, Float.class);
    42         isModifier = c.get(MODIFIER, false, Boolean.class);
     42        isModifier = c.get(MODIFIER, Boolean.FALSE, Boolean.class);
    4343    }
    4444
  • trunk/src/org/openstreetmap/josm/gui/mappaint/ElemStyles.java

    r8342 r8377  
    369369        if (defaultNodesIdx == cacheIdx)
    370370            return defaultNodes;
    371         defaultNodes = fromCanvas("default-points", true, Boolean.class);
     371        defaultNodes = fromCanvas("default-points", Boolean.TRUE, Boolean.class);
    372372        defaultNodesIdx = cacheIdx;
    373373        return defaultNodes;
     
    380380        if (defaultLinesIdx == cacheIdx)
    381381            return defaultLines;
    382         defaultLines = fromCanvas("default-lines", true, Boolean.class);
     382        defaultLines = fromCanvas("default-lines", Boolean.TRUE, Boolean.class);
    383383        defaultLinesIdx = cacheIdx;
    384384        return defaultLines;
  • trunk/src/org/openstreetmap/josm/gui/mappaint/MultiCascade.java

    r7005 r8377  
    6464            c = new Cascade();
    6565            if (!"default".equals(layer) && !"*".equals(layer)) {
    66                 c.put(MODIFIER, true);
     66                c.put(MODIFIER, Boolean.TRUE);
    6767            }
    6868        }
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java

    r8324 r8377  
    969969                Boolean b = Cascade.convertTo(arg.evaluate(env), boolean.class);
    970970                if (b == null || !b) {
    971                     return false;
     971                    return Boolean.FALSE;
    972972                }
    973973            }
    974             return true;
     974            return Boolean.TRUE;
    975975        }
    976976    }
     
    996996                Boolean b = Cascade.convertTo(arg.evaluate(env), boolean.class);
    997997                if (b != null && b) {
    998                     return true;
     998                    return Boolean.TRUE;
    999999                }
    10001000            }
    1001             return false;
     1001            return Boolean.FALSE;
    10021002        }
    10031003    }
  • trunk/src/org/openstreetmap/josm/gui/preferences/SourceEditor.java

    r8324 r8377  
    327327        tblIconPaths.getColumnModel().getColumn(0).setCellEditor(new FileOrUrlCellEditor(false));
    328328        tblIconPaths.setRowHeight(20);
    329         tblIconPaths.putClientProperty("terminateEditOnFocusLost", true);
     329        tblIconPaths.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
    330330        iconPathsModel.setIconPaths(getInitialIconPathsList());
    331331
  • trunk/src/org/openstreetmap/josm/gui/preferences/SourceEntry.java

    r7356 r8377  
    9090     * @see #active
    9191     */
    92     public SourceEntry(String url, String name, String title, Boolean active) {
     92    public SourceEntry(String url, String name, String title, boolean active) {
    9393        this(url, false, null, name, title, active);
    9494    }
  • trunk/src/org/openstreetmap/josm/gui/preferences/advanced/ListEditor.java

    r8308 r8377  
    6969        ListSettingTableModel listModel = new ListSettingTableModel();
    7070        JTable table = new JTable(listModel);
    71         table.putClientProperty("terminateEditOnFocusLost", true);
     71        table.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
    7272        table.setTableHeader(null);
    7373
  • trunk/src/org/openstreetmap/josm/gui/preferences/advanced/ListListEditor.java

    r8376 r8377  
    102102        tableModel = new ListTableModel();
    103103        table = new JTable(tableModel);
    104         table.putClientProperty("terminateEditOnFocusLost", true);
     104        table.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
    105105        table.setTableHeader(null);
    106106
  • trunk/src/org/openstreetmap/josm/gui/preferences/advanced/MapListEditor.java

    r8308 r8377  
    120120        tableModel = new MapTableModel();
    121121        table = new JTable(tableModel);
    122         table.putClientProperty("terminateEditOnFocusLost", true);
     122        table.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
    123123        table.getTableHeader().getColumnModel().getColumn(0).setHeaderValue(tr("Key"));
    124124        table.getTableHeader().getColumnModel().getColumn(1).setHeaderValue(tr("Value"));
  • trunk/src/org/openstreetmap/josm/gui/preferences/advanced/PreferencesTable.java

    r8308 r8377  
    5353        model = new AllSettingsTableModel();
    5454        setModel(model);
    55         putClientProperty("terminateEditOnFocusLost", true);
     55        putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
    5656        getColumnModel().getColumn(1).setCellRenderer(new SettingCellRenderer());
    5757        getColumnModel().getColumn(1).setCellEditor(new SettingCellEditor());
  • trunk/src/org/openstreetmap/josm/gui/preferences/display/ColorPreference.java

    r7402 r8377  
    276276    @Override
    277277    public boolean ok() {
    278         Boolean ret = false;
     278        boolean ret = false;
    279279        for(String d : del) {
    280280            Main.pref.put("color."+d, null);
     
    282282        for (int i = 0; i < colors.getRowCount(); ++i) {
    283283            String key = (String)colors.getValueAt(i, 0);
    284             if(Main.pref.putColor(key, (Color)colors.getValueAt(i, 1)))
    285             {
     284            if(Main.pref.putColor(key, (Color)colors.getValueAt(i, 1))) {
    286285                if(key.startsWith("mappaint.")) {
    287286                    ret = true;
  • trunk/src/org/openstreetmap/josm/gui/preferences/imagery/ImageryPreference.java

    r8308 r8377  
    302302                }
    303303            };
    304             activeTable.putClientProperty("terminateEditOnFocusLost", true);
     304            activeTable.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
    305305
    306306            defaultModel = new ImageryDefaultLayerTableModel();
  • trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreferencesModel.java

    r8017 r8377  
    8484            if (selectedPluginsMap.get(pi) == null) {
    8585                if (activePlugins.contains(pi.name)) {
    86                     selectedPluginsMap.put(pi, true);
     86                    selectedPluginsMap.put(pi, Boolean.TRUE);
    8787                }
    8888            }
  • trunk/src/org/openstreetmap/josm/gui/progress/AbstractProgressMonitor.java

    r8285 r8377  
    108108                requestedState.title = title;
    109109            }
    110             requestedState.intermediate = false;
     110            requestedState.intermediate = Boolean.FALSE;
    111111        } else {
    112112            checkState(State.IN_TASK);
     
    126126                requestedState.title = title;
    127127            }
    128             requestedState.intermediate = true;
     128            requestedState.intermediate = Boolean.TRUE;
    129129        } else {
    130130            checkState(State.IN_TASK);
  • trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetItems.java

    r8365 r8377  
    555555                return null;
    556556            case KEY:
    557                 return tags.containsKey(key) ? true : null;
     557                return tags.containsKey(key) ? Boolean.TRUE : null;
    558558            case KEY_REQUIRED:
    559559                return tags.containsKey(key);
    560560            case KEY_VALUE:
    561                 return tags.containsKey(key) && getValues().contains(tags.get(key)) ? true : null;
     561                return tags.containsKey(key) && getValues().contains(tags.get(key)) ? Boolean.TRUE : null;
    562562            case KEY_VALUE_REQUIRED:
    563563                return tags.containsKey(key) && getValues().contains(tags.get(key));
  • trunk/src/org/openstreetmap/josm/gui/widgets/AbstractTextComponentValidator.java

    r8291 r8377  
    4646    protected void feedbackInvalid(String msg) {
    4747        if (valid == null || valid || !Objects.equals(msg, this.msg)) {
    48             // only provide feedback if the validity has changed. This avoids
    49             // unnecessary UI updates.
     48            // only provide feedback if the validity has changed. This avoids unnecessary UI updates.
    5049            tc.setBorder(ERROR_BORDER);
    5150            tc.setBackground(ERROR_BACKGROUND);
    5251            tc.setToolTipText(msg);
    53             valid = false;
     52            valid = Boolean.FALSE;
    5453            this.msg = msg;
    5554        }
     
    6261    protected void feedbackValid(String msg) {
    6362        if (valid == null || !valid || !Objects.equals(msg, this.msg)) {
    64             // only provide feedback if the validity has changed. This avoids
    65             // unnecessary UI updates.
     63            // only provide feedback if the validity has changed. This avoids unnecessary UI updates.
    6664            tc.setBorder(UIManager.getBorder("TextField.border"));
    6765            tc.setBackground(UIManager.getColor("TextField.background"));
    6866            tc.setToolTipText(msg == null ? "" : msg);
    69             valid = true;
     67            valid = Boolean.TRUE;
    7068            this.msg = msg;
    7169        }
  • trunk/src/org/openstreetmap/josm/gui/widgets/JosmComboBox.java

    r8005 r8377  
    184184        public void propertyChange(PropertyChangeEvent evt) {
    185185            if ("editable".equals(evt.getPropertyName())) {
    186                 if (evt.getNewValue().equals(true)) {
     186                if (evt.getNewValue().equals(Boolean.TRUE)) {
    187187                    enableMenu();
    188188                } else {
  • trunk/src/org/openstreetmap/josm/gui/widgets/JosmEditorPane.java

    r8291 r8377  
    125125            defaults.put("EditorPane[Enabled].backgroundPainter", bgColor);
    126126            pane.putClientProperty("Nimbus.Overrides", defaults);
    127             pane.putClientProperty("Nimbus.Overrides.InheritDefaults", true);
     127            pane.putClientProperty("Nimbus.Overrides.InheritDefaults", Boolean.TRUE);
    128128            pane.setBackground(bgColor);
    129129        }
  • trunk/src/org/openstreetmap/josm/io/NoteReader.java

    r8347 r8377  
    5555        private Action noteAction;
    5656        private Date commentCreateDate;
    57         private Boolean commentIsNew;
     57        private boolean commentIsNew;
    5858        private List<Note> notes;
    5959        private String commentText;
     
    119119                    commentIsNew = false;
    120120                } else {
    121                     commentIsNew = Boolean.valueOf(isNew);
     121                    commentIsNew = Boolean.parseBoolean(isNew);
    122122                }
    123123                break;
     
    145145                commentUsername = null;
    146146                commentCreateDate = null;
    147                 commentIsNew = null;
     147                commentIsNew = false;
    148148                commentText = null;
    149149            }
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControlHttpsServer.java

    r8342 r8377  
    134134     * @param san SubjectAlternativeName extension (optional)
    135135     */
    136     private static X509Certificate generateCertificate(String dn, KeyPair pair, int days, String algorithm, String san) throws GeneralSecurityException, IOException {
     136    private static X509Certificate generateCertificate(String dn, KeyPair pair, int days, String algorithm, String san)
     137            throws GeneralSecurityException, IOException {
    137138        PrivateKey privkey = pair.getPrivate();
    138139        X509CertInfo info = new X509CertInfo();
     
    166167        CertificateExtensions ext = new CertificateExtensions();
    167168        // Critical: Not CA, max path len 0
    168         ext.set(BasicConstraintsExtension.NAME, new BasicConstraintsExtension(true, false, 0));
     169        ext.set(BasicConstraintsExtension.NAME, new BasicConstraintsExtension(Boolean.TRUE, false, 0));
    169170        // Critical: only allow TLS ("serverAuth" = 1.3.6.1.5.5.7.3.1)
    170         ext.set(ExtendedKeyUsageExtension.NAME, new ExtendedKeyUsageExtension(true,
     171        ext.set(ExtendedKeyUsageExtension.NAME, new ExtendedKeyUsageExtension(Boolean.TRUE,
    171172                new Vector<ObjectIdentifier>(Arrays.asList(new ObjectIdentifier("1.3.6.1.5.5.7.3.1")))));
    172173
     
    185186            }
    186187            // Non critical
    187             ext.set(SubjectAlternativeNameExtension.NAME, new SubjectAlternativeNameExtension(false, gnames));
     188            ext.set(SubjectAlternativeNameExtension.NAME, new SubjectAlternativeNameExtension(Boolean.FALSE, gnames));
    188189        }
    189190
  • trunk/src/org/openstreetmap/josm/tools/PlatformHookOsx.java

    r7894 r8377  
    8080            Class<?> eawtFullScreenUtilities = Class.forName("com.apple.eawt.FullScreenUtilities");
    8181            eawtFullScreenUtilities.getDeclaredMethod("setWindowCanFullScreen",
    82                     new Class[]{Window.class, boolean.class}).invoke(eawtFullScreenUtilities, window, true);
     82                    new Class[]{Window.class, boolean.class}).invoke(eawtFullScreenUtilities, window, Boolean.TRUE);
    8383        } catch (ReflectiveOperationException | SecurityException | IllegalArgumentException e) {
    8484            Main.warn("Failed to register with OSX: " + e);
  • trunk/src/org/openstreetmap/josm/tools/RightAndLefthandTraffic.java

    r8126 r8377  
    2929            for (Area a : leftHandTrafficPolygons) {
    3030                if (a.contains(ll.lon(), ll.lat()))
    31                     return true;
     31                    return Boolean.TRUE;
    3232            }
    33             return false;
     33            return Boolean.FALSE;
    3434        }
    3535
     
    4040                PolygonIntersection is = Geometry.polygonIntersection(abox, a, 1e-10 /* using deg and not meters */);
    4141                if (is == PolygonIntersection.FIRST_INSIDE_SECOND)
    42                     return true;
     42                    return Boolean.TRUE;
    4343                if (is != PolygonIntersection.OUTSIDE)
    4444                    return null;
    4545            }
    46             return false;
     46            return Boolean.FALSE;
    4747        }
    4848    }
Note: See TracChangeset for help on using the changeset viewer.