Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
QuasselDroid-ng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
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
Janne Mareike Koschinski
QuasselDroid-ng
Commits
e61cfee1
Commit
e61cfee1
authored
7 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Log only hashes, not actual object names, to avoid leaking PII into logs
parent
301db2fb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/src/main/java/de/kuschku/quasseldroid_ng/protocol/SignalProxyMessage.kt
+3
-3
3 additions, 3 deletions
...de/kuschku/quasseldroid_ng/protocol/SignalProxyMessage.kt
with
3 additions
and
3 deletions
app/src/main/java/de/kuschku/quasseldroid_ng/protocol/SignalProxyMessage.kt
+
3
−
3
View file @
e61cfee1
...
@@ -25,7 +25,7 @@ sealed class SignalProxyMessage {
...
@@ -25,7 +25,7 @@ sealed class SignalProxyMessage {
class
SyncMessage
(
val
className
:
String
,
val
objectName
:
String
,
val
slotName
:
String
,
class
SyncMessage
(
val
className
:
String
,
val
objectName
:
String
,
val
slotName
:
String
,
val
params
:
QVariantList
)
:
SignalProxyMessage
()
{
val
params
:
QVariantList
)
:
SignalProxyMessage
()
{
override
fun
toString
():
String
{
override
fun
toString
():
String
{
return
"SyncMessage::$className:$objectName/$slotName"
return
"SyncMessage::$className:$
{
objectName
.hashCode()}
/$slotName"
}
}
}
}
...
@@ -37,14 +37,14 @@ sealed class SignalProxyMessage {
...
@@ -37,14 +37,14 @@ sealed class SignalProxyMessage {
class
InitRequest
(
val
className
:
String
,
val
objectName
:
String
)
:
SignalProxyMessage
()
{
class
InitRequest
(
val
className
:
String
,
val
objectName
:
String
)
:
SignalProxyMessage
()
{
override
fun
toString
():
String
{
override
fun
toString
():
String
{
return
"InitRequest::$className:$objectName"
return
"InitRequest::$className:$
{
objectName
.hashCode()}
"
}
}
}
}
class
InitData
(
val
className
:
String
,
val
objectName
:
String
,
val
initData
:
QVariantMap
)
:
class
InitData
(
val
className
:
String
,
val
objectName
:
String
,
val
initData
:
QVariantMap
)
:
SignalProxyMessage
()
{
SignalProxyMessage
()
{
override
fun
toString
():
String
{
override
fun
toString
():
String
{
return
"InitData::$className:$objectName"
return
"InitData::$className:$
{
objectName
.hashCode()}
"
}
}
}
}
...
...
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