Changeset 2861 in josm for trunk/src/org/openstreetmap/josm/gui/oauth/AbstractAuthorizationUI.java
- Timestamp:
- 2010-01-15T10:44:16+01:00 (15 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/AbstractAuthorizationUI.java
r2858 r2861 13 13 * 14 14 */ 15 public abstract class AbstractAuthori sationUI extends VerticallyScrollablePanel{15 public abstract class AbstractAuthorizationUI extends VerticallyScrollablePanel{ 16 16 /** 17 17 * The property name for the Access Token property 18 18 */ 19 static public final String ACCESS_TOKEN_PROP = AbstractAuthori sationUI.class.getName() + ".accessToken";19 static public final String ACCESS_TOKEN_PROP = AbstractAuthorizationUI.class.getName() + ".accessToken"; 20 20 21 21 private String apiUrl; … … 27 27 } 28 28 29 public AbstractAuthori sationUI() {29 public AbstractAuthorizationUI() { 30 30 pnlAdvancedProperties = new AdvancedOAuthPropertiesPanel(); 31 31 }
Note:
See TracChangeset
for help on using the changeset viewer.