Commit 211bd8b 1 parent 0ca1721 commit 211bd8b Copy full SHA for 211bd8b
File tree 6 files changed +9
-9
lines changed
6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 4
4
5
5
namespace LUS {
6
6
std::shared_ptr<IResource> ResourceFactoryBinaryArrayV0::ReadResource (std::shared_ptr<File> file) {
7
- if (!FileHasValidFormatAndReader ()) {
7
+ if (!FileHasValidFormatAndReader (file )) {
8
8
return nullptr ;
9
9
}
10
10
Original file line number Diff line number Diff line change 4
4
5
5
namespace LUS {
6
6
std::shared_ptr<IResource> ResourceFactoryBinaryBlobV0::ReadResource (std::shared_ptr<File> file) {
7
- if (!FileHasValidFormatAndReader ()) {
7
+ if (!FileHasValidFormatAndReader (file )) {
8
8
return nullptr ;
9
9
}
10
10
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ uint32_t ResourceFactoryDisplayList::GetCombineLERPValue(std::string valStr) {
129
129
}
130
130
131
131
std::shared_ptr<IResource> ResourceFactoryBinaryDisplayListV0::ReadResource (std::shared_ptr<File> file) {
132
- if (!FileHasValidFormatAndReader ()) {
132
+ if (!FileHasValidFormatAndReader (file )) {
133
133
return nullptr ;
134
134
}
135
135
@@ -166,7 +166,7 @@ std::shared_ptr<IResource> ResourceFactoryBinaryDisplayListV0::ReadResource(std:
166
166
}
167
167
168
168
std::shared_ptr<IResource> ResourceFactoryXMLDisplayListV0::ReadResource (std::shared_ptr<File> file) {
169
- if (!FileHasValidFormatAndReader ()) {
169
+ if (!FileHasValidFormatAndReader (file )) {
170
170
return nullptr ;
171
171
}
172
172
Original file line number Diff line number Diff line change 4
4
5
5
namespace LUS {
6
6
std::shared_ptr<IResource> ResourceFactoryBinaryMatrixV0::ReadResource (std::shared_ptr<File> file) {
7
- if (!FileHasValidFormatAndReader ()) {
7
+ if (!FileHasValidFormatAndReader (file )) {
8
8
return nullptr ;
9
9
}
10
10
Original file line number Diff line number Diff line change 5
5
namespace LUS {
6
6
7
7
std::shared_ptr<IResource> ResourceFactoryBinaryTextureV0::ReadResource (std::shared_ptr<File> file) {
8
- if (!FileHasValidFormatAndReader ()) {
8
+ if (!FileHasValidFormatAndReader (file )) {
9
9
return nullptr ;
10
10
}
11
11
@@ -23,7 +23,7 @@ std::shared_ptr<IResource> ResourceFactoryBinaryTextureV0::ReadResource(std::sha
23
23
}
24
24
25
25
std::shared_ptr<IResource> ResourceFactoryBinaryTextureV1::ReadResource (std::shared_ptr<File> file) {
26
- if (!FileHasValidFormatAndReader ()) {
26
+ if (!FileHasValidFormatAndReader (file )) {
27
27
return nullptr ;
28
28
}
29
29
Original file line number Diff line number Diff line change 4
4
5
5
namespace LUS {
6
6
std::shared_ptr<IResource> ResourceFactoryBinaryVertexV0::ReadResource (std::shared_ptr<File> file) {
7
- if (!FileHasValidFormatAndReader ()) {
7
+ if (!FileHasValidFormatAndReader (file )) {
8
8
return nullptr ;
9
9
}
10
10
@@ -32,7 +32,7 @@ std::shared_ptr<IResource> ResourceFactoryBinaryVertexV0::ReadResource(std::shar
32
32
}
33
33
34
34
std::shared_ptr<IResource> ResourceFactoryXMLVertexV0::ReadResource (std::shared_ptr<File> file) {
35
- if (!FileHasValidFormatAndReader ()) {
35
+ if (!FileHasValidFormatAndReader (file )) {
36
36
return nullptr ;
37
37
}
38
38
You can’t perform that action at this time.
0 commit comments