Changeset 12807 in josm
- Timestamp:
- 2017-09-09T19:58:38+02:00 (7 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/util/MultikeyActionsHandler.java
r12799 r12807 28 28 import org.openstreetmap.josm.tools.Shortcut; 29 29 30 /** 31 * Handles the different multikey actions. 32 * The possible actions can be selected through a popup menu. 33 * @since 4595 34 */ 30 35 public final class MultikeyActionsHandler { 31 36 -
trunk/src/org/openstreetmap/josm/gui/util/MultikeyShortcutAction.java
r12799 r12807 8 8 import org.openstreetmap.josm.tools.Shortcut; 9 9 10 /** 11 * Action implementing a multikey shortcut - shorcuts like Ctrl+Alt+S,n will toggle n-th layer visibility. 12 * @since 4595 13 */ 10 14 public interface MultikeyShortcutAction extends Action { 11 15 -
trunk/test/functional/org/openstreetmap/josm/tools/HttpClientTest.java
r12570 r12807 183 183 } 184 184 185 @Test ()185 @Test 186 186 public void testHttp401() throws IOException { 187 187 // https://tools.ietf.org/html/rfc2324 -
trunk/test/unit/org/openstreetmap/josm/testutils/JOSMTestRules.java
r12795 r12807 23 23 import org.openstreetmap.josm.gui.MainApplication; 24 24 import org.openstreetmap.josm.gui.mappaint.MapPaintStyles; 25 import org.openstreetmap.josm.gui.oauth.OAuthAuthorizationWizard; 25 26 import org.openstreetmap.josm.gui.tagging.presets.TaggingPresets; 26 27 import org.openstreetmap.josm.gui.util.GuiHelper; … … 28 29 import org.openstreetmap.josm.io.OsmApi; 29 30 import org.openstreetmap.josm.io.OsmApiInitializationException; 31 import org.openstreetmap.josm.io.OsmConnection; 30 32 import org.openstreetmap.josm.io.OsmTransferCanceledException; 31 33 import org.openstreetmap.josm.tools.I18n; … … 283 285 // Setup callbacks 284 286 DeleteCommand.setDeletionCallback(DeleteAction.defaultDeletionCallback); 287 OsmConnection.setOAuthAccessTokenFetcher(OAuthAuthorizationWizard::obtainAccessToken); 285 288 286 289 // Set up i18n
Note:
See TracChangeset
for help on using the changeset viewer.