mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix tight recursion loop error
This commit is contained in:
@@ -275,13 +275,13 @@ namespace SabreTools.DatFiles
|
|||||||
/// Get the index and machine associated with an item index
|
/// Get the index and machine associated with an item index
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public KeyValuePair<long, Machine?> GetMachineForItemDB(long itemIndex)
|
public KeyValuePair<long, Machine?> GetMachineForItemDB(long itemIndex)
|
||||||
=> GetMachineForItemDB(itemIndex);
|
=> ItemsDB.GetMachineForItem(itemIndex);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get the index and source associated with an item index
|
/// Get the index and source associated with an item index
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public KeyValuePair<long, Source?> GetSourceForItemDB(long itemIndex)
|
public KeyValuePair<long, Source?> GetSourceForItemDB(long itemIndex)
|
||||||
=> GetSourceForItemDB(itemIndex);
|
=> ItemsDB.GetSourceForItem(itemIndex);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Remove a key from the file dictionary if it exists
|
/// Remove a key from the file dictionary if it exists
|
||||||
|
|||||||
Reference in New Issue
Block a user