jhorvath commented on code in PR #7413:
URL: https://github.com/apache/netbeans/pull/7413#discussion_r1627636223
##########
java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/db/DBConnectionProvider.java:
##########
@@ -207,4 +211,27 @@ private static void deleteTempFile(Path temp) {
}
}
}
+
+ private static PropertiesProvider getPropertiesProvider() {
+ if (propertiesProvider == null) {
+ propertiesProvider =
Lookup.getDefault().lookup(PropertiesProvider.class);
+ }
+ if (propertiesProvider == null) {
+ propertiesProvider = new DefaultPropertiesProvider();
+ }
+ return propertiesProvider;
+ }
+
+ public interface PropertiesProvider {
Review Comment:
I have moved DBConnectionProvider to the cloud.oracle module. The
PropertiesProvider is not needed now.
--
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