Skip to content
Merged
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
20 changes: 0 additions & 20 deletions lib/src/entry/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,26 +258,6 @@ impl EntryBuilder {
})
}

/// Creates a new symbolic link with the given name and link.
///
/// # Deprecated
///
/// Use [`EntryBuilder::new_symlink`] instead.
///
/// # Arguments
///
/// * `name` - The name of the entry to create.
/// * `source` - The entry reference the symlink points to.
///
/// # Errors
///
/// Returns an error if initialization fails.
#[inline]
#[deprecated(since = "0.27.2", note = "Use `EntryBuilder::new_symlink` instead")]
pub fn new_symbolic_link(name: EntryName, source: EntryReference) -> io::Result<Self> {
Self::new_symlink(name, source)
}

/// Creates a new hard link with the given name and link.
///
/// # Arguments
Expand Down
Loading