* 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 {
|
class Get : public Action {
|
||||||
public:
|
public:
|
||||||
Get(block_cache* cache, cached_block* block)
|
Get(block_cache* cache, cached_block* block)
|
||||||
: Action(cache, block)
|
:
|
||||||
|
Action(cache, block)
|
||||||
{
|
{
|
||||||
Initialized();
|
Initialized();
|
||||||
}
|
}
|
||||||
@@ -219,7 +220,8 @@ public:
|
|||||||
class Put : public Action {
|
class Put : public Action {
|
||||||
public:
|
public:
|
||||||
Put(block_cache* cache, cached_block* block)
|
Put(block_cache* cache, cached_block* block)
|
||||||
: Action(cache, block)
|
:
|
||||||
|
Action(cache, block)
|
||||||
{
|
{
|
||||||
Initialized();
|
Initialized();
|
||||||
}
|
}
|
||||||
@@ -230,7 +232,8 @@ public:
|
|||||||
class Read : public Action {
|
class Read : public Action {
|
||||||
public:
|
public:
|
||||||
Read(block_cache* cache, cached_block* block)
|
Read(block_cache* cache, cached_block* block)
|
||||||
: Action(cache, block)
|
:
|
||||||
|
Action(cache, block)
|
||||||
{
|
{
|
||||||
Initialized();
|
Initialized();
|
||||||
}
|
}
|
||||||
@@ -241,7 +244,8 @@ public:
|
|||||||
class Write : public Action {
|
class Write : public Action {
|
||||||
public:
|
public:
|
||||||
Write(block_cache* cache, cached_block* block)
|
Write(block_cache* cache, cached_block* block)
|
||||||
: Action(cache, block)
|
:
|
||||||
|
Action(cache, block)
|
||||||
{
|
{
|
||||||
Initialized();
|
Initialized();
|
||||||
}
|
}
|
||||||
@@ -252,7 +256,8 @@ public:
|
|||||||
class Flush : public Action {
|
class Flush : public Action {
|
||||||
public:
|
public:
|
||||||
Flush(block_cache* cache, cached_block* block, bool getUnused = false)
|
Flush(block_cache* cache, cached_block* block, bool getUnused = false)
|
||||||
: Action(cache, block),
|
:
|
||||||
|
Action(cache, block),
|
||||||
fGetUnused(getUnused)
|
fGetUnused(getUnused)
|
||||||
{
|
{
|
||||||
Initialized();
|
Initialized();
|
||||||
|
|||||||
Reference in New Issue
Block a user