mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-14 23:05:32 +00:00
Remove unnecessary configuration member variable.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
2067d91614
commit
2b3bc80f8a
@ -6,14 +6,9 @@ namespace LR35902.BlarggTest
|
||||
{
|
||||
public class Computer
|
||||
{
|
||||
private readonly Configuration configuration;
|
||||
private readonly Board board;
|
||||
|
||||
public Computer(Configuration configuration)
|
||||
{
|
||||
this.configuration = configuration;
|
||||
this.board = new Board(configuration);
|
||||
}
|
||||
public Computer(Configuration configuration) => this.board = new Board(configuration);
|
||||
|
||||
public void Run()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user