Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: enable relevant whitespace checks and fix them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveRequestTokenTask.java

    r8444 r8510  
    4949    protected void cancel() {
    5050        canceled = true;
    51         synchronized(this) {
     51        synchronized (this) {
    5252            if (client != null) {
    5353                client.cancel();
     
    7575    protected void realRun() throws SAXException, IOException, OsmTransferException {
    7676        try {
    77             synchronized(this) {
     77            synchronized (this) {
    7878                client = new OsmOAuthAuthorizationClient(parameters);
    7979            }
    8080            requestToken = client.getRequestToken(getProgressMonitor().createSubTaskMonitor(0, false));
    81         } catch(OsmTransferCanceledException e) {
     81        } catch (OsmTransferCanceledException e) {
    8282            return;
    8383        } catch (OsmOAuthAuthorizationException e) {
     
    8686            requestToken = null;
    8787        } finally {
    88             synchronized(this) {
     88            synchronized (this) {
    8989                client = null;
    9090            }
Note: See TracChangeset for help on using the changeset viewer.