Ignore:
Timestamp:
2009-09-20T11:05:58+02:00 (15 years ago)
Author:
stoecker
Message:

applied #3532 - path by Dave Hansen - infrastructure for faster data access

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/history/AdjustmentSynchronizer.java

    r1709 r2165  
    7676    protected void setParticipatingInSynchronizedScrolling(Adjustable adjustable, boolean isParticipating) {
    7777        if (adjustable == null)
    78             throw new IllegalArgumentException(tr("parameter '{0}' must not be null", "adjustable"));
     78            throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "adjustable"));
    7979
    8080        if (! synchronizedAdjustables.contains(adjustable))
     
    117117    protected void adapt(final JCheckBox view, final Adjustable adjustable) throws IllegalArgumentException, IllegalStateException {
    118118        if (adjustable == null)
    119             throw new IllegalArgumentException(tr("parameter '{0}' must not be null", "adjustable"));
     119            throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "adjustable"));
    120120        if (view == null)
    121             throw new IllegalArgumentException(tr("parameter '{0}' must not be null", "view"));
     121            throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "view"));
    122122
    123123        if (! synchronizedAdjustables.contains(adjustable)) {
Note: See TracChangeset for help on using the changeset viewer.