thurka commented on code in PR #6591:
URL: https://github.com/apache/netbeans/pull/6591#discussion_r1369813069


##########
enterprise/micronaut/src/org/netbeans/modules/micronaut/db/MicronautRepository.java:
##########
@@ -132,6 +139,14 @@ protected List<FileObject> 
createFromTemplate(CreateDescriptor desc) throws IOEx
                         DialogDisplayer.getDefault().notifyLater(new 
NotifyDescriptor.Message(Bundle.MSG_NoEntities(sourceGroup.getRootFolder().getPath()),
 NotifyDescriptor.ERROR_MESSAGE));
                         return Collections.emptyList();
                     }
+                    List<Item> repoType = new ArrayList<>();
+                    Item pageableItem = new 
Item(Bundle.MSG_PageableRepository(), null 
/*Bundle.DESC_PageableRepository()*/);
+                    repoType.add(new Item(Bundle.MSG_CrudRepository(), null 
/*Bundle.DESC_CrudRepository()*/));

Review Comment:
   It was there initially, but Jirka suggested to remove it, since it is too 
long and does not fit well in one line. We can use it as 'detail' string when 
`Item` is extended to support it - it currently supports name and description 
of 
[QuickPickItem](https://code.visualstudio.com/api/references/vscode-api#QuickPickItem).



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

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

Reply via email to