Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.8.0, 2.0.0
Description
The PathsUpdate#parsePath() method has the following code:
String scheme = uri.getScheme(); if (scheme == null) { // Use the default URI scheme only if the path has no scheme. URI defaultUri = FileSystem.getDefaultUri(CONF);
The default URI never changes so there is no need to call FileSystem.getDefaultUri(CONF) for each input string which doesn't have URI. This should be done once in constructor.
Attachments
Attachments
Issue Links
- relates to
-
SENTRY-1687 FullUpdateInitializer can be more efficient
- Resolved