[jira] [Created] (NETBEANS-4457) False warning on Exit IDE (Exiting the ide will terminate the following processes)

2020-06-16 Thread Dmitry.Mochalov (Jira)
Dmitry.Mochalov created NETBEANS-4457:
-

 Summary: False warning on Exit IDE (Exiting the ide will terminate 
the following processes)
 Key: NETBEANS-4457
 URL: https://issues.apache.org/jira/browse/NETBEANS-4457
 Project: NetBeans
  Issue Type: Bug
  Components: ide - UI
Affects Versions: 12.0
Reporter: Dmitry.Mochalov
 Attachments: image-2020-06-16-16-52-23-303.png

Steps to reproduce:

1) start to compile the netbeans sources (build.xml ->run target -> build). 
2) Wait until it all compiles. It took about 30 minutes. 
4) try to close NetBeans

Expected result:

netbeans closes without warning about running process

Actual result:

It showed the dialog with the following Waring:

!image-2020-06-16-16-52-23-303.png!

 

 

My environment:

Product Version = Apache NetBeans IDE 12.0
 Operating System = Windows 10 version 10.0 running on amd64
 Java; VM; Vendor = 1.8.0_231; Java HotSpot(TM) 64-Bit Server VM 25.231-b11; 
Oracle Corporation
 Runtime = Java(TM) SE Runtime Environment 1.8.0_231-b11
 Java Home = C:\Program Files\Java\jdk1.8.0_231\jre
 System Locale; Encoding = ru_RU (nb); Cp1251

java-nb is not installed.

 

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-4070) JavaDoc in tooltip (ctrl+mouse hover) duplicates the description of parameters of a method when the method overrides the parent method

2020-06-13 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov resolved NETBEANS-4070.
---
Fix Version/s: 12.0
   Resolution: Fixed

Tested,  fixed in 12.0

> JavaDoc in tooltip (ctrl+mouse hover) duplicates the description of 
> parameters of a method when the method overrides the parent method
> --
>
> Key: NETBEANS-4070
> URL: https://issues.apache.org/jira/browse/NETBEANS-4070
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 11.0, 11.2, 11.3
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 12.0
>
> Attachments: 2020-03-25_22-11-32.png, 2020-03-25_22-13-22.png
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> Steps to reproduce:
>  1) Create a class that extends AbstractList
>  2) Override the addAll method and add Javadoc like this:
> {code:java}
> public class ListImpl extends AbstractList {/**
>  * Description. 0. ListImpl.
>  *
>  * @return   1. ListImpl.
>  *
>  * @param index  2. ListImpl.
>  *
>  * @throws {@inheritDoc}
>  */
> @Override
> public boolean addAll(int index,
> Collection c) throws 
> ClassCastException,IndexOutOfBoundsException {
> return true;
> }@Override
> public E get(int index) {
> throw new UnsupportedOperationException("Not supported yet."); //To 
> change body of generated methods, choose Tools | Templates.
> }@Override
> public int size() {
> throw new UnsupportedOperationException("Not supported yet."); //To 
> change body of generated methods, choose Tools | Templates.
> }}
> {code}
>  
>  
> The ToolTip shows this (see the first attachment):
>   !2020-03-25_22-11-32.png!
>  
> but should show this (see the second attachment):
>   !2020-03-25_22-13-22.png!
>  
> If a parameter has a Javadoc description in the local method Javadoc should 
> use it. If a parameter doesn't have a local description Javadoc should use 
> description inherited from the parent.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Resolved] (NETBEANS-3929) There is no way to delete a git tag from a remote repository using NetBeans

2020-06-13 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3929?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov resolved NETBEANS-3929.
---
Fix Version/s: 12.0
   Resolution: Fixed

Tested, deleting a tag now works.

> There is no way to delete a git tag from a remote repository using NetBeans
> ---
>
> Key: NETBEANS-3929
> URL: https://issues.apache.org/jira/browse/NETBEANS-3929
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.2
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 12.0
>
> Attachments: image-2020-03-01-13-53-01-272.png, 
> image-2020-03-01-13-53-41-212.png, image-2020-03-01-13-53-58-870.png, 
> image-2020-03-01-13-54-08-208.png, image-2020-03-01-13-55-15-061.png, 
> image-2020-03-01-13-55-43-469.png
>
>  Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> *Steps to reproduce:*
>  1) Create local tag (for example 8.0.1)
>  2) Push changes to the upstream
>  3) Can see tags using the GitHub releases page.
>  4) Remove tag using an integrated git repository.
>  5) Push changes to the upstream using (git repository browser -> remote -> 
> push...)
>  *Expected result*
>  1) Netbeans detects that there is a missing local tag and the tag exists in 
> the remote repository.
>  2) NetBeans asks whether i want to delete a locally missing tag from the 
> remote repository.
>  3) I agree. NetBeans perform removal of the tag from the remote repo.
>  4) NetBeans logs removal in the output window of git.
>  
> *Real result:*
>  1) NetBeans ignores locally deleted tags. 
>  2) The "Push to Remote Repository" dialog (git repository browser -> remote 
> -> push...) doesn't show options to delete from the remote repository browser 
> locally deleted tag.
>  3) After performing fetch from remote NetBeans restores locally deleted.
> *adds info*
>  Currently, NetBeans can remove branches and I think the functionality of 
> removal a tag should look like removal a branch.
>  
> removal of a branch:
> !image-2020-03-01-13-53-41-212.png!
> !image-2020-03-01-13-54-08-208.png!
> supposed view of removal a tag:
> !image-2020-03-01-13-55-15-061.png!
>  
> logging:
> !image-2020-03-01-13-55-43-469.png!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4108) git -> ignore should add new file and trailing new line at the end of gitignore

2020-04-03 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4108?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov updated NETBEANS-4108:
--
Description: 
As a good practice netbeans should add new line character at the end of file

see topic:

[https://stackoverflow.com/questions/5813311/no-newline-at-end-of-file]

currently it adds just line without new line

 

steps to reproduce

0) create a new file

1) right click on the file

2) go to git -> ignore ->ignore

3) open .gitignore file. the file has not the new line at the end of the file.

  was:
As a good practice netbeans should add new line character at the end of file

see topic:

[https://stackoverflow.com/questions/5813311/no-newline-at-end-of-file]

currently it adds just line without new line


> git -> ignore should add new file and trailing new line at the end of 
> gitignore
> ---
>
> Key: NETBEANS-4108
> URL: https://issues.apache.org/jira/browse/NETBEANS-4108
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.0, 11.2
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Trivial
>
> As a good practice netbeans should add new line character at the end of file
> see topic:
> [https://stackoverflow.com/questions/5813311/no-newline-at-end-of-file]
> currently it adds just line without new line
>  
> steps to reproduce
> 0) create a new file
> 1) right click on the file
> 2) go to git -> ignore ->ignore
> 3) open .gitignore file. the file has not the new line at the end of the file.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Assigned] (NETBEANS-4108) git -> ignore should add new file and trailing new line at the end of gitignore

2020-04-03 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4108?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov reassigned NETBEANS-4108:
-

Assignee: Dmitry.Mochalov

> git -> ignore should add new file and trailing new line at the end of 
> gitignore
> ---
>
> Key: NETBEANS-4108
> URL: https://issues.apache.org/jira/browse/NETBEANS-4108
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.0, 11.2
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Trivial
>
> As a good practice netbeans should add new line character at the end of file
> see topic:
> [https://stackoverflow.com/questions/5813311/no-newline-at-end-of-file]
> currently it adds just line without new line



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4108) git -> ignore should add new file and trailing new line at the end of gitignore

2020-04-03 Thread Dmitry.Mochalov (Jira)
Dmitry.Mochalov created NETBEANS-4108:
-

 Summary: git -> ignore should add new file and trailing new line 
at the end of gitignore
 Key: NETBEANS-4108
 URL: https://issues.apache.org/jira/browse/NETBEANS-4108
 Project: NetBeans
  Issue Type: Bug
  Components: versioncontrol - Git
Affects Versions: 11.2, 11.0
Reporter: Dmitry.Mochalov


As a good practice netbeans should add new line character at the end of file

see topic:

[https://stackoverflow.com/questions/5813311/no-newline-at-end-of-file]

currently it adds just line without new line



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4070) JavaDoc in tooltip (ctrl+mouse hover) duplicates the description of parameters of a method when the method overrides the parent method

2020-03-26 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov updated NETBEANS-4070:
--
Description: 
Steps to reproduce:
 1) Create a class that extends AbstractList
 2) Override the addAll method and add Javadoc like this:
{code:java}
public class ListImpl extends AbstractList {/**
 * Description. 0. ListImpl.
 *
 * @return   1. ListImpl.
 *
 * @param index  2. ListImpl.
 *
 * @throws {@inheritDoc}
 */
@Override
public boolean addAll(int index,
Collection c) throws 
ClassCastException,IndexOutOfBoundsException {
return true;
}@Override
public E get(int index) {
throw new UnsupportedOperationException("Not supported yet."); //To 
change body of generated methods, choose Tools | Templates.
}@Override
public int size() {
throw new UnsupportedOperationException("Not supported yet."); //To 
change body of generated methods, choose Tools | Templates.
}}

{code}
 

 

The ToolTip shows this (see the first attachment):

  !2020-03-25_22-11-32.png!

 

but should show this (see the second attachment):

  !2020-03-25_22-13-22.png!

 

If a parameter has a Javadoc description in the local method Javadoc should use 
it. If a parameter doesn't have a local description Javadoc should use 
description inherited from the parent.

  was:
Steps to reproduce:
 1) Create a class that extends AbstractList
 2) Override the addAll method and add Javadoc like this:
{code:java}
public class ListImpl extends AbstractList {/**
 * Description. 0. ListImpl.
 *
 * @return   1. ListImpl.
 *
 * @param index  2. ListImpl.
 *
 * @throws {@inheritDoc}
 */
@Override
public boolean addAll(int index,
Collection c) throws 
ClassCastException,IndexOutOfBoundsException {
return true;
}@Override
public E get(int index) {
throw new UnsupportedOperationException("Not supported yet."); //To 
change body of generated methods, choose Tools | Templates.
}@Override
public int size() {
throw new UnsupportedOperationException("Not supported yet."); //To 
change body of generated methods, choose Tools | Templates.
}}

{code}
 

 

The ToolTip shows this (see the first attachment):

 

 

but should show this (see the second attachment):

 

 

If a parameter has a Javadoc description in the local method Javadoc should use 
it. If a parameter doesn't have a local description Javadoc should use 
description inherited from the parent.


> JavaDoc in tooltip (ctrl+mouse hover) duplicates the description of 
> parameters of a method when the method overrides the parent method
> --
>
> Key: NETBEANS-4070
> URL: https://issues.apache.org/jira/browse/NETBEANS-4070
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 11.0, 11.2, 11.3
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Minor
> Attachments: 2020-03-25_22-11-32.png, 2020-03-25_22-13-22.png
>
>
> Steps to reproduce:
>  1) Create a class that extends AbstractList
>  2) Override the addAll method and add Javadoc like this:
> {code:java}
> public class ListImpl extends AbstractList {/**
>  * Description. 0. ListImpl.
>  *
>  * @return   1. ListImpl.
>  *
>  * @param index  2. ListImpl.
>  *
>  * @throws {@inheritDoc}
>  */
> @Override
> public boolean addAll(int index,
> Collection c) throws 
> ClassCastException,IndexOutOfBoundsException {
> return true;
> }@Override
> public E get(int index) {
> throw new UnsupportedOperationException("Not supported yet."); //To 
> change body of generated methods, choose Tools | Templates.
> }@Override
> public int size() {
> throw new UnsupportedOperationException("Not supported yet."); //To 
> change body of generated methods, choose Tools | Templates.
> }}
> {code}
>  
>  
> The ToolTip shows this (see the first attachment):
>   !2020-03-25_22-11-32.png!
>  
> but should show this (see the second attachment):
>   !2020-03-25_22-13-22.png!
>  
> If a parameter has a Javadoc description in the local method Javadoc should 
> use it. If a parameter doesn't have a local description Javadoc should use 
> description inherited from the parent.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans 

[jira] [Updated] (NETBEANS-4070) JavaDoc in tooltip (ctrl+mouse hover) duplicates the description of parameters of a method when the method overrides the parent method

2020-03-26 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov updated NETBEANS-4070:
--
Description: 
Steps to reproduce:
 1) Create a class that extends AbstractList
 2) Override the addAll method and add Javadoc like this:
{code:java}
public class ListImpl extends AbstractList {/**
 * Description. 0. ListImpl.
 *
 * @return   1. ListImpl.
 *
 * @param index  2. ListImpl.
 *
 * @throws {@inheritDoc}
 */
@Override
public boolean addAll(int index,
Collection c) throws 
ClassCastException,IndexOutOfBoundsException {
return true;
}@Override
public E get(int index) {
throw new UnsupportedOperationException("Not supported yet."); //To 
change body of generated methods, choose Tools | Templates.
}@Override
public int size() {
throw new UnsupportedOperationException("Not supported yet."); //To 
change body of generated methods, choose Tools | Templates.
}}

{code}
 

 

The ToolTip shows this (see the first attachment):

 

 

but should show this (see the second attachment):

 

 

If a parameter has a Javadoc description in the local method Javadoc should use 
it. If a parameter doesn't have a local description Javadoc should use 
description inherited from the parent.

  was:
Steps to reproduce:
 1) Create a class that extends AbstractList
 2) Override the addAll method and add Javadoc like this:

public class ListImpl extends AbstractList

{ /** * Description. 0. ListImpl. * * @return  1. ListImpl. * * @param 
index 2. ListImpl. * * @throws 

{@inheritDoc}

*/
 @Override
 public boolean addAll(int index,
 Collection c) throws ClassCastException,IndexOutOfBoundsException

{ return true; }

...
 ... (other methods)...
 ...
 }

The ToolTip shows this (see the first attachment):

 

 

but should show this (see the second attachment):

 

 

If a parameter has a Javadoc description in the local method Javadoc should use 
it. If a parameter doesn't have a local description Javadoc should use 
description inherited from the parent.


> JavaDoc in tooltip (ctrl+mouse hover) duplicates the description of 
> parameters of a method when the method overrides the parent method
> --
>
> Key: NETBEANS-4070
> URL: https://issues.apache.org/jira/browse/NETBEANS-4070
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 11.0, 11.2, 11.3
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Minor
> Attachments: 2020-03-25_22-11-32.png, 2020-03-25_22-13-22.png
>
>
> Steps to reproduce:
>  1) Create a class that extends AbstractList
>  2) Override the addAll method and add Javadoc like this:
> {code:java}
> public class ListImpl extends AbstractList {/**
>  * Description. 0. ListImpl.
>  *
>  * @return   1. ListImpl.
>  *
>  * @param index  2. ListImpl.
>  *
>  * @throws {@inheritDoc}
>  */
> @Override
> public boolean addAll(int index,
> Collection c) throws 
> ClassCastException,IndexOutOfBoundsException {
> return true;
> }@Override
> public E get(int index) {
> throw new UnsupportedOperationException("Not supported yet."); //To 
> change body of generated methods, choose Tools | Templates.
> }@Override
> public int size() {
> throw new UnsupportedOperationException("Not supported yet."); //To 
> change body of generated methods, choose Tools | Templates.
> }}
> {code}
>  
>  
> The ToolTip shows this (see the first attachment):
>  
>  
> but should show this (see the second attachment):
>  
>  
> If a parameter has a Javadoc description in the local method Javadoc should 
> use it. If a parameter doesn't have a local description Javadoc should use 
> description inherited from the parent.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4070) JavaDoc in tooltip (ctrl+mouse hover) duplicates the description of parameters of a method when the method overrides the parent method

2020-03-26 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov updated NETBEANS-4070:
--
Summary: JavaDoc in tooltip (ctrl+mouse hover) duplicates the description 
of parameters of a method when the method overrides the parent method  (was: 
JavaDoc in tooltip (clrl+mouse hover) duplicates the description of parameters 
of a method when the method overrides the parent method)

> JavaDoc in tooltip (ctrl+mouse hover) duplicates the description of 
> parameters of a method when the method overrides the parent method
> --
>
> Key: NETBEANS-4070
> URL: https://issues.apache.org/jira/browse/NETBEANS-4070
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 11.0, 11.2, 11.3
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Minor
> Attachments: 2020-03-25_22-11-32.png, 2020-03-25_22-13-22.png
>
>
> Steps to reproduce:
>  1) Create a class that extends AbstractList
>  2) Override the addAll method and add Javadoc like this:
> public class ListImpl extends AbstractList
> { /** * Description. 0. ListImpl. * * @return  1. ListImpl. * * @param 
> index 2. ListImpl. * * @throws \\{@inheritDoc}
> */
>  @Override
>  public boolean addAll(int index,
>  Collection c) throws 
> ClassCastException,IndexOutOfBoundsException
> { return true; }
> ...
>  ... (other methods)...
>  ...
>  }
> The ToolTip shows this (see the first attachment):
>  
>  
> but should show this (see the second attachment):
>  
>  
> If a parameter has a Javadoc description in the local method Javadoc should 
> use it. If a parameter doesn't have a local description Javadoc should use 
> description inherited from the parent.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4070) JavaDoc in tooltip (ctrl+mouse hover) duplicates the description of parameters of a method when the method overrides the parent method

2020-03-26 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov updated NETBEANS-4070:
--
Description: 
Steps to reproduce:
 1) Create a class that extends AbstractList
 2) Override the addAll method and add Javadoc like this:

public class ListImpl extends AbstractList

{ /** * Description. 0. ListImpl. * * @return  1. ListImpl. * * @param 
index 2. ListImpl. * * @throws 

{@inheritDoc}

*/
 @Override
 public boolean addAll(int index,
 Collection c) throws ClassCastException,IndexOutOfBoundsException

{ return true; }

...
 ... (other methods)...
 ...
 }

The ToolTip shows this (see the first attachment):

 

 

but should show this (see the second attachment):

 

 

If a parameter has a Javadoc description in the local method Javadoc should use 
it. If a parameter doesn't have a local description Javadoc should use 
description inherited from the parent.

  was:
Steps to reproduce:
 1) Create a class that extends AbstractList
 2) Override the addAll method and add Javadoc like this:

public class ListImpl extends AbstractList

{ /** * Description. 0. ListImpl. * * @return  1. ListImpl. * * @param 
index 2. ListImpl. * * @throws \\{@inheritDoc}

*/
 @Override
 public boolean addAll(int index,
 Collection c) throws ClassCastException,IndexOutOfBoundsException

{ return true; }

...
 ... (other methods)...
 ...
 }

The ToolTip shows this (see the first attachment):

 

 

but should show this (see the second attachment):

 

 

If a parameter has a Javadoc description in the local method Javadoc should use 
it. If a parameter doesn't have a local description Javadoc should use 
description inherited from the parent.


> JavaDoc in tooltip (ctrl+mouse hover) duplicates the description of 
> parameters of a method when the method overrides the parent method
> --
>
> Key: NETBEANS-4070
> URL: https://issues.apache.org/jira/browse/NETBEANS-4070
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 11.0, 11.2, 11.3
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Minor
> Attachments: 2020-03-25_22-11-32.png, 2020-03-25_22-13-22.png
>
>
> Steps to reproduce:
>  1) Create a class that extends AbstractList
>  2) Override the addAll method and add Javadoc like this:
> public class ListImpl extends AbstractList
> { /** * Description. 0. ListImpl. * * @return  1. ListImpl. * * @param 
> index 2. ListImpl. * * @throws 
> {@inheritDoc}
> */
>  @Override
>  public boolean addAll(int index,
>  Collection c) throws 
> ClassCastException,IndexOutOfBoundsException
> { return true; }
> ...
>  ... (other methods)...
>  ...
>  }
> The ToolTip shows this (see the first attachment):
>  
>  
> but should show this (see the second attachment):
>  
>  
> If a parameter has a Javadoc description in the local method Javadoc should 
> use it. If a parameter doesn't have a local description Javadoc should use 
> description inherited from the parent.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Assigned] (NETBEANS-4070) JavaDoc in tooltip (clrl+mouse hover) duplicates the description of parameters of a method when the method overrides the parent method

2020-03-26 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov reassigned NETBEANS-4070:
-

Assignee: Dmitry.Mochalov

> JavaDoc in tooltip (clrl+mouse hover) duplicates the description of 
> parameters of a method when the method overrides the parent method
> --
>
> Key: NETBEANS-4070
> URL: https://issues.apache.org/jira/browse/NETBEANS-4070
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 11.0, 11.2, 11.3
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Minor
> Attachments: 2020-03-25_22-11-32.png, 2020-03-25_22-13-22.png
>
>
> Steps to reproduce:
>  1) Create a class that extends AbstractList
>  2) Override the addAll method and add Javadoc like this:
> public class ListImpl extends AbstractList
> { /** * Description. 0. ListImpl. * * @return  1. ListImpl. * * @param 
> index 2. ListImpl. * * @throws \\{@inheritDoc}
> */
>  @Override
>  public boolean addAll(int index,
>  Collection c) throws 
> ClassCastException,IndexOutOfBoundsException
> { return true; }
> ...
>  ... (other methods)...
>  ...
>  }
> The ToolTip shows this (see the first attachment):
>  
>  
> but should show this (see the second attachment):
>  
>  
> If a parameter has a Javadoc description in the local method Javadoc should 
> use it. If a parameter doesn't have a local description Javadoc should use 
> description inherited from the parent.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4070) JavaDoc in tooltip (clrl+mouse hover) duplicates the description of parameters of a method when the method overrides the parent method

2020-03-26 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov updated NETBEANS-4070:
--
Description: 
Steps to reproduce:
 1) Create a class that extends AbstractList
 2) Override the addAll method and add Javadoc like this:

public class ListImpl extends AbstractList

{ /** * Description. 0. ListImpl. * * @return  1. ListImpl. * * @param 
index 2. ListImpl. * * @throws \\{@inheritDoc}

*/
 @Override
 public boolean addAll(int index,
 Collection c) throws ClassCastException,IndexOutOfBoundsException

{ return true; }

...
 ... (other methods)...
 ...
 }

The ToolTip shows this (see the first attachment):

 

 

but should show this (see the second attachment):

 

 

If a parameter has a Javadoc description in the local method Javadoc should use 
it. If a parameter doesn't have a local description Javadoc should use 
description inherited from the parent.

  was:
Steps to reproduce:
1) Create a class that extends AbstractList
2) Override the addAll method and add Javadoc like this:

public class ListImpl extends AbstractList {

/**
 * Description. 0. ListImpl.
 *
 * @return  1. ListImpl.
 *
 * @param index 2. ListImpl.
 *
 * @throws \{@inheritDoc}
 */
 @Override
 public boolean addAll(int index,
 Collection c) throws ClassCastException,IndexOutOfBoundsException 
{
 return true;
 }
...
... (other methods)...
...
}

The ToolTip shows this (see the first attachment):

 

 

but should show this (see the second attachment):

!image-2020-03-26-11-50-17-037.png!

 

If a parameter has a Javadoc description in the local method Javadoc should use 
it. If a parameter doesn't have a local description Javadoc should use 
description inherited from the parent.


> JavaDoc in tooltip (clrl+mouse hover) duplicates the description of 
> parameters of a method when the method overrides the parent method
> --
>
> Key: NETBEANS-4070
> URL: https://issues.apache.org/jira/browse/NETBEANS-4070
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 11.0, 11.2, 11.3
>Reporter: Dmitry.Mochalov
>Priority: Minor
> Attachments: 2020-03-25_22-11-32.png, 2020-03-25_22-13-22.png
>
>
> Steps to reproduce:
>  1) Create a class that extends AbstractList
>  2) Override the addAll method and add Javadoc like this:
> public class ListImpl extends AbstractList
> { /** * Description. 0. ListImpl. * * @return  1. ListImpl. * * @param 
> index 2. ListImpl. * * @throws \\{@inheritDoc}
> */
>  @Override
>  public boolean addAll(int index,
>  Collection c) throws 
> ClassCastException,IndexOutOfBoundsException
> { return true; }
> ...
>  ... (other methods)...
>  ...
>  }
> The ToolTip shows this (see the first attachment):
>  
>  
> but should show this (see the second attachment):
>  
>  
> If a parameter has a Javadoc description in the local method Javadoc should 
> use it. If a parameter doesn't have a local description Javadoc should use 
> description inherited from the parent.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4070) JavaDoc in tooltip (clrl+mouse hover) duplicates the description of parameters of a method when the method overrides the parent method

2020-03-26 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov updated NETBEANS-4070:
--
Attachment: (was: 2020-03-25_22-11-32.png)

> JavaDoc in tooltip (clrl+mouse hover) duplicates the description of 
> parameters of a method when the method overrides the parent method
> --
>
> Key: NETBEANS-4070
> URL: https://issues.apache.org/jira/browse/NETBEANS-4070
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 11.0, 11.2, 11.3
>Reporter: Dmitry.Mochalov
>Priority: Minor
> Attachments: 2020-03-25_22-11-32.png, 2020-03-25_22-13-22.png
>
>
> Steps to reproduce:
> 1) Create a class that extends AbstractList
> 2) Override the addAll method and add Javadoc like this:
> public class ListImpl extends AbstractList {
> /**
>  * Description. 0. ListImpl.
>  *
>  * @return  1. ListImpl.
>  *
>  * @param index 2. ListImpl.
>  *
>  * @throws \{@inheritDoc}
>  */
>  @Override
>  public boolean addAll(int index,
>  Collection c) throws 
> ClassCastException,IndexOutOfBoundsException {
>  return true;
>  }
> ...
> ... (other methods)...
> ...
> }
> The ToolTip shows this (see the first attachment):
>  
>  
> but should show this (see the second attachment):
> !image-2020-03-26-11-50-17-037.png!
>  
> If a parameter has a Javadoc description in the local method Javadoc should 
> use it. If a parameter doesn't have a local description Javadoc should use 
> description inherited from the parent.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-4070) JavaDoc in tooltip (clrl+mouse hover) duplicates the description of parameters of a method when the method overrides the parent method

2020-03-26 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-4070?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov updated NETBEANS-4070:
--
Attachment: 2020-03-25_22-13-22.png

> JavaDoc in tooltip (clrl+mouse hover) duplicates the description of 
> parameters of a method when the method overrides the parent method
> --
>
> Key: NETBEANS-4070
> URL: https://issues.apache.org/jira/browse/NETBEANS-4070
> Project: NetBeans
>  Issue Type: Bug
>  Components: java - Javadoc
>Affects Versions: 11.0, 11.2, 11.3
>Reporter: Dmitry.Mochalov
>Priority: Minor
> Attachments: 2020-03-25_22-11-32.png, 2020-03-25_22-13-22.png
>
>
> Steps to reproduce:
>  1) Create a class that extends AbstractList
>  2) Override the addAll method and add Javadoc like this:
> public class ListImpl extends AbstractList
> { /** * Description. 0. ListImpl. * * @return  1. ListImpl. * * @param 
> index 2. ListImpl. * * @throws \\{@inheritDoc}
> */
>  @Override
>  public boolean addAll(int index,
>  Collection c) throws 
> ClassCastException,IndexOutOfBoundsException
> { return true; }
> ...
>  ... (other methods)...
>  ...
>  }
> The ToolTip shows this (see the first attachment):
>  
>  
> but should show this (see the second attachment):
>  
>  
> If a parameter has a Javadoc description in the local method Javadoc should 
> use it. If a parameter doesn't have a local description Javadoc should use 
> description inherited from the parent.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Created] (NETBEANS-4070) JavaDoc in tooltip (clrl+mouse hover) duplicates the description of parameters of a method when the method overrides the parent method

2020-03-26 Thread Dmitry.Mochalov (Jira)
Dmitry.Mochalov created NETBEANS-4070:
-

 Summary: JavaDoc in tooltip (clrl+mouse hover) duplicates the 
description of parameters of a method when the method overrides the parent 
method
 Key: NETBEANS-4070
 URL: https://issues.apache.org/jira/browse/NETBEANS-4070
 Project: NetBeans
  Issue Type: Bug
  Components: java - Javadoc
Affects Versions: 11.2, 11.0, 11.3
Reporter: Dmitry.Mochalov
 Attachments: 2020-03-25_22-11-32.png, 2020-03-25_22-11-32.png

Steps to reproduce:
1) Create a class that extends AbstractList
2) Override the addAll method and add Javadoc like this:

public class ListImpl extends AbstractList {

/**
 * Description. 0. ListImpl.
 *
 * @return  1. ListImpl.
 *
 * @param index 2. ListImpl.
 *
 * @throws \{@inheritDoc}
 */
 @Override
 public boolean addAll(int index,
 Collection c) throws ClassCastException,IndexOutOfBoundsException 
{
 return true;
 }
...
... (other methods)...
...
}

The ToolTip shows this (see the first attachment):

 

 

but should show this (see the second attachment):

!image-2020-03-26-11-50-17-037.png!

 

If a parameter has a Javadoc description in the local method Javadoc should use 
it. If a parameter doesn't have a local description Javadoc should use 
description inherited from the parent.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-3929) There is no way to delete a git tag from a remote repository using NetBeans

2020-03-01 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3929?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov updated NETBEANS-3929:
--
Summary: There is no way to delete a git tag from a remote repository using 
NetBeans  (was: There is no way to delete a git tag from a remote repository 
from using NetBeans)

> There is no way to delete a git tag from a remote repository using NetBeans
> ---
>
> Key: NETBEANS-3929
> URL: https://issues.apache.org/jira/browse/NETBEANS-3929
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.2
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Minor
> Attachments: image-2020-03-01-13-53-01-272.png, 
> image-2020-03-01-13-53-41-212.png, image-2020-03-01-13-53-58-870.png, 
> image-2020-03-01-13-54-08-208.png, image-2020-03-01-13-55-15-061.png, 
> image-2020-03-01-13-55-43-469.png
>
>
> *Steps to reproduce:*
>  1) Create local tag (for example 8.0.1)
>  2) Push changes to the upstream
>  3) Can see tags using the GitHub releases page.
>  4) Remove tag using an integrated git repository.
>  5) Push changes to the upstream using (git repository browser -> remote -> 
> push...)
>  *Expected result*
>  1) Netbeans detects that there is a missing local tag and the tag exists in 
> the remote repository.
>  2) NetBeans asks whether i want to delete a locally missing tag from the 
> remote repository.
>  3) I agree. NetBeans perform removal of the tag from the remote repo.
>  4) NetBeans logs removal in the output window of git.
>  
> *Real result:*
>  1) NetBeans ignores locally deleted tags. 
>  2) The "Push to Remote Repository" dialog (git repository browser -> remote 
> -> push...) doesn't show options to delete from the remote repository browser 
> locally deleted tag.
>  3) After performing fetch from remote NetBeans restores locally deleted.
> *adds info*
>  Currently, NetBeans can remove branches and I think the functionality of 
> removal a tag should look like removal a branch.
>  
> removal of a branch:
> !image-2020-03-01-13-53-41-212.png!
> !image-2020-03-01-13-54-08-208.png!
> supposed view of removal a tag:
> !image-2020-03-01-13-55-15-061.png!
>  
> logging:
> !image-2020-03-01-13-55-43-469.png!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Assigned] (NETBEANS-3929) There is no way to delete a git tag from a remote repository from using NetBeans

2020-03-01 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3929?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov reassigned NETBEANS-3929:
-

Assignee: Dmitry.Mochalov

> There is no way to delete a git tag from a remote repository from using 
> NetBeans
> 
>
> Key: NETBEANS-3929
> URL: https://issues.apache.org/jira/browse/NETBEANS-3929
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.2
>Reporter: Dmitry.Mochalov
>Assignee: Dmitry.Mochalov
>Priority: Minor
> Attachments: image-2020-03-01-13-53-01-272.png, 
> image-2020-03-01-13-53-41-212.png, image-2020-03-01-13-53-58-870.png, 
> image-2020-03-01-13-54-08-208.png, image-2020-03-01-13-55-15-061.png, 
> image-2020-03-01-13-55-43-469.png
>
>
> *Steps to reproduce:*
>  1) Create local tag (for example 8.0.1)
>  2) Push changes to the upstream
>  3) Can see tags using the GitHub releases page.
>  4) Remove tag using an integrated git repository.
>  5) Push changes to the upstream using (git repository browser -> remote -> 
> push...)
>  *Expected result*
>  1) Netbeans detects that there is a missing local tag and the tag exists in 
> the remote repository.
>  2) NetBeans asks whether i want to delete a locally missing tag from the 
> remote repository.
>  3) I agree. NetBeans perform removal of the tag from the remote repo.
>  4) NetBeans logs removal in the output window of git.
>  
> *Real result:*
>  1) NetBeans ignores locally deleted tags. 
>  2) The "Push to Remote Repository" dialog (git repository browser -> remote 
> -> push...) doesn't show options to delete from the remote repository browser 
> locally deleted tag.
>  3) After performing fetch from remote NetBeans restores locally deleted.
> *adds info*
>  Currently, NetBeans can remove branches and I think the functionality of 
> removal a tag should look like removal a branch.
>  
> removal of a branch:
> !image-2020-03-01-13-53-41-212.png!
> !image-2020-03-01-13-54-08-208.png!
> supposed view of removal a tag:
> !image-2020-03-01-13-55-15-061.png!
>  
> logging:
> !image-2020-03-01-13-55-43-469.png!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



[jira] [Updated] (NETBEANS-3929) There is no way to delete a git tag from a remote repository from using NetBeans

2020-03-01 Thread Dmitry.Mochalov (Jira)


 [ 
https://issues.apache.org/jira/browse/NETBEANS-3929?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry.Mochalov updated NETBEANS-3929:
--
 Attachment: image-2020-03-01-13-53-01-272.png
 image-2020-03-01-13-53-41-212.png
 image-2020-03-01-13-53-58-870.png
 image-2020-03-01-13-54-08-208.png
 image-2020-03-01-13-55-15-061.png
 image-2020-03-01-13-55-43-469.png
Description: 
*Steps to reproduce:*
 1) Create local tag (for example 8.0.1)
 2) Push changes to the upstream
 3) Can see tags using the GitHub releases page.
 4) Remove tag using an integrated git repository.
 5) Push changes to the upstream using (git repository browser -> remote -> 
push...)
 *Expected result*
 1) Netbeans detects that there is a missing local tag and the tag exists in 
the remote repository.
 2) NetBeans asks whether i want to delete a locally missing tag from the 
remote repository.
 3) I agree. NetBeans perform removal of the tag from the remote repo.
 4) NetBeans logs removal in the output window of git.

 

*Real result:*
 1) NetBeans ignores locally deleted tags. 
 2) The "Push to Remote Repository" dialog (git repository browser -> remote -> 
push...) doesn't show options to delete from the remote repository browser 
locally deleted tag.
 3) After performing fetch from remote NetBeans restores locally deleted.

*adds info*
 Currently, NetBeans can remove branches and I think the functionality of 
removal a tag should look like removal a branch.

 

removal of a branch:

!image-2020-03-01-13-53-41-212.png!

!image-2020-03-01-13-54-08-208.png!

supposed view of removal a tag:

!image-2020-03-01-13-55-15-061.png!

 

logging:

!image-2020-03-01-13-55-43-469.png!

  was:
*Steps to reproduce:*
1) Create local tag (for example 8.0.1)
2) Push changes to the upstream
3) Can see tags using the GitHub releases page.
4) Remove tag using an integrated git repository.
5) Push changes to the upstream using (git repository browser -> remote -> 
push...)
*Expected result*
1) Netbeans detects that there is a missing local tag and the tag exists in the 
remote repository.
2) NetBeans asks whether i want to delete a locally missing tag from the remote 
repository.
3) I agree. NetBeans perform removal of the tag from the remote repo.
4) NetBeans logs removal in the output window of git.

 

*Real result:*
1) NetBeans ignores locally deleted tags. 
2) The "Push to Remote Repository" dialog (git repository browser -> remote -> 
push...) doesn't show options to delete from the remote repository browser 
locally deleted tag.
3) After performing fetch from remote NetBeans restores locally deleted.


> There is no way to delete a git tag from a remote repository from using 
> NetBeans
> 
>
> Key: NETBEANS-3929
> URL: https://issues.apache.org/jira/browse/NETBEANS-3929
> Project: NetBeans
>  Issue Type: Bug
>  Components: versioncontrol - Git
>Affects Versions: 11.2
>Reporter: Dmitry.Mochalov
>Priority: Minor
> Attachments: image-2020-03-01-13-53-01-272.png, 
> image-2020-03-01-13-53-41-212.png, image-2020-03-01-13-53-58-870.png, 
> image-2020-03-01-13-54-08-208.png, image-2020-03-01-13-55-15-061.png, 
> image-2020-03-01-13-55-43-469.png
>
>
> *Steps to reproduce:*
>  1) Create local tag (for example 8.0.1)
>  2) Push changes to the upstream
>  3) Can see tags using the GitHub releases page.
>  4) Remove tag using an integrated git repository.
>  5) Push changes to the upstream using (git repository browser -> remote -> 
> push...)
>  *Expected result*
>  1) Netbeans detects that there is a missing local tag and the tag exists in 
> the remote repository.
>  2) NetBeans asks whether i want to delete a locally missing tag from the 
> remote repository.
>  3) I agree. NetBeans perform removal of the tag from the remote repo.
>  4) NetBeans logs removal in the output window of git.
>  
> *Real result:*
>  1) NetBeans ignores locally deleted tags. 
>  2) The "Push to Remote Repository" dialog (git repository browser -> remote 
> -> push...) doesn't show options to delete from the remote repository browser 
> locally deleted tag.
>  3) After performing fetch from remote NetBeans restores locally deleted.
> *adds info*
>  Currently, NetBeans can remove branches and I think the functionality of 
> removal a tag should look like removal a branch.
>  
> removal of a branch:
> !image-2020-03-01-13-53-41-212.png!
> !image-2020-03-01-13-54-08-208.png!
> supposed view of removal a tag:
> !image-2020-03-01-13-55-15-061.png!
>  
> logging:
> !image-2020-03-01-13-55-43-469.png!



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: 

[jira] [Created] (NETBEANS-3929) There is no way to delete a git tag from a remote repository from using NetBeans

2020-03-01 Thread Dmitry.Mochalov (Jira)
Dmitry.Mochalov created NETBEANS-3929:
-

 Summary: There is no way to delete a git tag from a remote 
repository from using NetBeans
 Key: NETBEANS-3929
 URL: https://issues.apache.org/jira/browse/NETBEANS-3929
 Project: NetBeans
  Issue Type: Bug
  Components: versioncontrol - Git
Affects Versions: 11.2
Reporter: Dmitry.Mochalov


*Steps to reproduce:*
1) Create local tag (for example 8.0.1)
2) Push changes to the upstream
3) Can see tags using the GitHub releases page.
4) Remove tag using an integrated git repository.
5) Push changes to the upstream using (git repository browser -> remote -> 
push...)
*Expected result*
1) Netbeans detects that there is a missing local tag and the tag exists in the 
remote repository.
2) NetBeans asks whether i want to delete a locally missing tag from the remote 
repository.
3) I agree. NetBeans perform removal of the tag from the remote repo.
4) NetBeans logs removal in the output window of git.

 

*Real result:*
1) NetBeans ignores locally deleted tags. 
2) The "Push to Remote Repository" dialog (git repository browser -> remote -> 
push...) doesn't show options to delete from the remote repository browser 
locally deleted tag.
3) After performing fetch from remote NetBeans restores locally deleted.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists