* Cleanup.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31869 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
+10
-5
@@ -208,7 +208,8 @@ private:
|
||||
class Get : public Action {
|
||||
public:
|
||||
Get(block_cache* cache, cached_block* block)
|
||||
: Action(cache, block)
|
||||
:
|
||||
Action(cache, block)
|
||||
{
|
||||
Initialized();
|
||||
}
|
||||
@@ -219,7 +220,8 @@ public:
|
||||
class Put : public Action {
|
||||
public:
|
||||
Put(block_cache* cache, cached_block* block)
|
||||
: Action(cache, block)
|
||||
:
|
||||
Action(cache, block)
|
||||
{
|
||||
Initialized();
|
||||
}
|
||||
@@ -230,7 +232,8 @@ public:
|
||||
class Read : public Action {
|
||||
public:
|
||||
Read(block_cache* cache, cached_block* block)
|
||||
: Action(cache, block)
|
||||
:
|
||||
Action(cache, block)
|
||||
{
|
||||
Initialized();
|
||||
}
|
||||
@@ -241,7 +244,8 @@ public:
|
||||
class Write : public Action {
|
||||
public:
|
||||
Write(block_cache* cache, cached_block* block)
|
||||
: Action(cache, block)
|
||||
:
|
||||
Action(cache, block)
|
||||
{
|
||||
Initialized();
|
||||
}
|
||||
@@ -252,7 +256,8 @@ public:
|
||||
class Flush : public Action {
|
||||
public:
|
||||
Flush(block_cache* cache, cached_block* block, bool getUnused = false)
|
||||
: Action(cache, block),
|
||||
:
|
||||
Action(cache, block),
|
||||
fGetUnused(getUnused)
|
||||
{
|
||||
Initialized();
|
||||
|
||||
Reference in New Issue
Block a user