Skip to content
This repository has been archived by the owner on Jun 22, 2020. It is now read-only.

Commit

Permalink
Fixed warnings in the ItemInventory2 classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Atvaark committed Mar 13, 2015
1 parent 8b979ea commit 7f5b073
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public class ItemInventory2BagList : ItemInventory2ListBase, IReadable<ItemInventory2BagList>
{
public ItemInventory2BagList Read(IReader reader, int address, bool relative = false)
public new ItemInventory2BagList Read(IReader reader, int address, bool relative = false)
{
base.Read(reader, address, relative);
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public class ItemInventory2CofferList : ItemInventory2ListBase, IReadable<ItemInventory2CofferList>
{
public ItemInventory2CofferList Read(IReader reader, int address, bool relative = false)
public new ItemInventory2CofferList Read(IReader reader, int address, bool relative = false)
{
base.Read(reader, address, relative);
return this;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public class ItemInventory2ShopList : ItemInventory2ListBase, IReadable<ItemInventory2ShopList>
{
public ItemInventory2ShopList Read(IReader reader, int address, bool relative = false)
public new ItemInventory2ShopList Read(IReader reader, int address, bool relative = false)
{
base.Read(reader, address, relative);
return this;
Expand Down

0 comments on commit 7f5b073

Please sign in to comment.