Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
002320e0
Commit
002320e0
authored
Nov 09, 2015
by
Adrien Béraud
Committed by
Alexandre Lision
Nov 11, 2015
Browse files
call: remove dead code
Tuleap:
#13
Change-Id: Ic948160e96a0f5e232871863407fa920292318ac
parent
7f56822b
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/call.cpp
View file @
002320e0
...
...
@@ -265,20 +265,6 @@ Call::toggleRecording()
return
startRecording
;
}
std
::
string
Call
::
getTypeStr
()
const
{
switch
(
type_
)
{
case
CallType
::
INCOMING
:
return
"incoming"
;
case
CallType
::
OUTGOING
:
return
"outgoing"
;
case
CallType
::
MISSED
:
return
"missed"
;
default:
return
""
;
}
}
std
::
map
<
std
::
string
,
std
::
string
>
Call
::
getDetails
()
const
{
...
...
src/call.h
View file @
002320e0
...
...
@@ -349,8 +349,6 @@ class Call : public Recordable, public std::enable_shared_from_this<Call> {
private:
bool
validStateTransition
(
CallState
newState
);
std
::
string
getTypeStr
()
const
;
/** Protect every attribute that can be changed by two threads */
mutable
std
::
recursive_mutex
callMutex_
{};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment