Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,6 @@ protected RMController getResourceController() {
return ((DBNResourceManagerRoot) getParentNode()).getResourceController();
}

@NotNull
@Deprecated
@Override
public String getNodeItemPath() {
return getParentNode().getNodeItemPath() + "/" + getName();
}

@Nullable
@Override
public DBNNode refreshNode(@NotNull DBRProgressMonitor monitor, @Nullable Object source) throws DBException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,6 @@ protected RMController getResourceController() throws DBException {
throw new DBException("Can't detect resource root node");
}

@NotNull
@Deprecated
@Override
public String getNodeItemPath() {
return getParentNode().getNodeItemPath() + "/" + getNodeDisplayName();
}

@Nullable
@Override
public DBNNode refreshNode(@NotNull DBRProgressMonitor monitor, @Nullable Object source) throws DBException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,6 @@ public DBNResourceManagerProject[] getChildren(@NotNull DBRProgressMonitor monit
return projects;
}

@NotNull
@Deprecated
@Override
public String getNodeItemPath() {
// Path doesn't include project name
return NodePathType.ext.getPrefix() + getNodeDisplayName();
}

@Nullable
@Override
public DBNNode refreshNode(@NotNull DBRProgressMonitor monitor, @Nullable Object source) throws DBException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public DBNNode getNode() {
@Property
@Deprecated(forRemoval = true)
public String getId() {
return node.getNodeItemPath();
return node.getNodeUri();
}

@Property
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ public Map<String, String> getMetaData() {
@Property
//TODO: node URI after finish migration to the new node path format
public String getNodePath() {
return node.getNodeItemPath();
return node.getNodeUri();
}
}
Loading