Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
U
Unity
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Shane Veasy
Unity
Commits
616ce615
Commit
616ce615
authored
7 years ago
by
Stanley Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Fixing bug and removing useless log messages
parent
337877b9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/GitHub.Api/Metrics/UsageModel.cs
+1
-1
1 addition, 1 deletion
src/GitHub.Api/Metrics/UsageModel.cs
src/GitHub.Api/Metrics/UsageTracker.cs
+0
-9
0 additions, 9 deletions
src/GitHub.Api/Metrics/UsageTracker.cs
with
1 addition
and
10 deletions
src/GitHub.Api/Metrics/UsageModel.cs
+
1
−
1
View file @
616ce615
...
...
@@ -17,7 +17,7 @@ namespace GitHub.Unity
public
class
UsageModel
{
private
List
<
Usage
>
reports
;
private
List
<
Usage
>
reports
=
new
List
<
Usage
>()
;
public
IList
<
Usage
>
Reports
{
...
...
This diff is collapsed.
Click to expand it.
src/GitHub.Api/Metrics/UsageTracker.cs
+
0
−
9
View file @
616ce615
...
...
@@ -51,15 +51,6 @@ namespace GitHub.Unity
if
(
json
!=
null
)
{
result
=
SimpleJson
.
DeserializeObject
<
UsageStore
>(
json
);
if
(
result
.
Model
==
null
)
{
Logger
.
Warning
(
"Model is Null"
);
}
if
(
result
.
Model
.
Reports
==
null
)
{
Logger
.
Warning
(
"Reports is Null"
);
}
}
else
{
...
...
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