Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
Prostředí pro benchmarky kompresních algoritmů pro 3D modely - Underpaid devs
Manage
Activity
Members
Labels
Plan
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASWI
ASWI 2024
Prostředí pro benchmarky kompresních algoritmů pro 3D modely - Underpaid devs
Commits
d0e6deea
Commit
d0e6deea
authored
11 months ago
by
vreznice
Browse files
Options
Downloads
Patches
Plain Diff
PPBKA3M-101
- Fix nullable parameters in constructor
parent
06377505
Branches
PPBKA3M-101
Branches containing commit
No related tags found
1 merge request
!12
PPBKA3M-101
Pipeline
#9519
failed
11 months ago
Stage: build
Stage: test
Stage: lint
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Core/Database/DatabaseAccess.cs
+9
-9
9 additions, 9 deletions
Core/Database/DatabaseAccess.cs
with
9 additions
and
9 deletions
Core/Database/DatabaseAccess.cs
+
9
−
9
View file @
d0e6deea
...
...
@@ -44,9 +44,9 @@ public class DatabaseAccess : IDatabaseAccess
{
if
(
reader
.
Read
())
{
string
?
name
=
reader
.
GetString
(
"Name"
);
string
?
path
=
reader
.
GetString
(
"Path"
);
string
?
displayName
=
reader
.
GetString
(
"DisplayName"
);
string
name
=
reader
.
GetString
(
"Name"
);
string
path
=
reader
.
GetString
(
"Path"
);
string
displayName
=
reader
.
GetString
(
"DisplayName"
);
methodFile
=
new
MethodFile
(
name
,
displayName
,
path
);
}
...
...
@@ -78,9 +78,9 @@ public class DatabaseAccess : IDatabaseAccess
{
if
(
reader
.
Read
())
{
string
?
name
=
reader
.
GetString
(
"Name"
);
string
?
path
=
reader
.
GetString
(
"Path"
);
string
?
displayName
=
reader
.
GetString
(
"DisplayName"
);
string
name
=
reader
.
GetString
(
"Name"
);
string
path
=
reader
.
GetString
(
"Path"
);
string
displayName
=
reader
.
GetString
(
"DisplayName"
);
metricFile
=
new
MetricFile
(
name
,
displayName
,
path
);
}
...
...
@@ -112,9 +112,9 @@ public class DatabaseAccess : IDatabaseAccess
{
if
(
reader
.
Read
())
{
string
?
name
=
reader
.
GetString
(
"3D_Object_Name"
);
string
?
hash
=
reader
.
GetString
(
"3D_Object_Hash"
);
string
?
displayName
=
reader
.
GetString
(
"3D_Object_DisplayName"
);
string
name
=
reader
.
GetString
(
"3D_Object_Name"
);
string
hash
=
reader
.
GetString
(
"3D_Object_Hash"
);
string
displayName
=
reader
.
GetString
(
"3D_Object_DisplayName"
);
ulong
size
=
reader
.
GetUInt64
(
"3D_Object_Size"
);
objFile
=
new
ObjectFile
(
name
,
displayName
,
hash
,
size
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment