Ignore:
Timestamp:
2020-06-07T14:49:02+02:00 (4 years ago)
Author:
Don-vip
Message:

see #19334 - javadoc fixes + protected constructors for abstract classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/io/AbstractUploadDialog.java

    r9685 r16553  
    4747     * @see JComponent#getDefaultLocale
    4848     */
    49     public AbstractUploadDialog(Window owner, ModalityType modalityType) {
     49    protected AbstractUploadDialog(Window owner, ModalityType modalityType) {
    5050        super(owner, modalityType);
    5151    }
     
    8989     * @see JComponent#getDefaultLocale
    9090     */
    91     public AbstractUploadDialog(Window owner, String title, ModalityType modalityType, GraphicsConfiguration gc) {
     91    protected AbstractUploadDialog(Window owner, String title, ModalityType modalityType, GraphicsConfiguration gc) {
    9292        super(owner, title, modalityType, gc);
    9393    }
     
    125125     * @see JComponent#getDefaultLocale
    126126     */
    127     public AbstractUploadDialog(Window owner, String title, ModalityType modalityType) {
     127    protected AbstractUploadDialog(Window owner, String title, ModalityType modalityType) {
    128128        super(owner, title, modalityType);
    129129    }
     
    152152     * @see JComponent#getDefaultLocale
    153153     */
    154     public AbstractUploadDialog(Window owner, String title) {
     154    protected AbstractUploadDialog(Window owner, String title) {
    155155        super(owner, title);
    156156    }
     
    177177     * @see JComponent#getDefaultLocale
    178178     */
    179     public AbstractUploadDialog(Window owner) {
     179    protected AbstractUploadDialog(Window owner) {
    180180        super(owner);
    181181    }
Note: See TracChangeset for help on using the changeset viewer.