Skip to content

Commit

Permalink
[BACKLOG-39677] Added code changes for local Vfs connection changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nawaz34-hitachivantara committed May 17, 2024
1 parent 1dc5216 commit fddfbc6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public String getRootPath() {
return rootPath;
}

@Override
public void setRootPath( String rootPath ) {
this.rootPath = StringUtils.isEmpty( rootPath ) ? null : rootPath;
}
Expand All @@ -83,5 +82,6 @@ public void setRootPath( String rootPath ) {
*/
protected void fillProperties( Map<String, String> props ) {
props.put( "baRoles", getBaRoles().toString() );
props.put( "rootPath", getRootPath() );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -125,18 +125,6 @@ default String getRootPath() {
return null;
}

/**
* Sets the root folder path, given as a string.
* <p>
* An empty root folder path value should be converted to {@code null}.
* Further syntax validation is performed only after variable substitution.
* <p>
* The default interface implementation exists to ensure backward compatibility and does nothing.
*
* @param rootPath The root path.
*/
default void setRootPath( String rootPath ) { }

/**
* Gets the list of roles with access to the connection from the Business Analytics product.
* <p>
Expand Down

0 comments on commit fddfbc6

Please sign in to comment.