Skip to content

Commit ca20e2b

Browse files
authored
Merge pull request #469 from JuliaRobotics/hotfix/20Q2/fix#462
Remove excessive warnings for #462
2 parents 93c9973 + 0919859 commit ca20e2b

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ branches:
2121
only:
2222
- master
2323
- develop
24-
- /^release-.*$/
24+
- /^release.*$/
2525

2626
jobs:
2727
include:

src/CloudGraphsDFG/services/CloudGraphsDFG.jl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,6 @@ function setDescription!(dfg::CloudGraphsDFG, description::String)
4242
return getDescription(dfg)
4343
end
4444

45-
function getSerializationModule(dfg::CloudGraphsDFG)::Module where G <: AbstractDFG
46-
# TODO: If we need to specialize this for RoME etc, here is where we'll change it.
47-
return Main
48-
end
49-
5045
##==============================================================================
5146
## User/Robot/Session Data CRUD
5247
##==============================================================================

src/services/Serialization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ function setSerializationModule!(dfg::G, mod::Module)::Nothing where G <: Abstra
186186
end
187187

188188
function getSerializationModule(dfg::G)::Module where G <: AbstractDFG
189-
@warn "Retrieving serialization module from AbstractDFG - override this in the '$(typeof(dfg)) structure! This is returning Main"
189+
#NOTE @warn "Retrieving serialization module from AbstractDFG - override this in the '$(typeof(dfg)) structure! This is returning Main"
190190
return Main
191191
end
192192

0 commit comments

Comments
 (0)