Skip to content

Commit

Permalink
renamed method
Browse files Browse the repository at this point in the history
  • Loading branch information
mzorz committed Apr 15, 2020
1 parent 9a514a3 commit ee352fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class FrameSaveService : Service() {
// now create a processor and run it.
// also hold a reference to it in the storySaveProcessors list in case the Service is destroyed, so
// we can cancel each coroutine.
val processor = createOneProcessor(storyIndex, photoEditor)
val processor = createProcessor(storyIndex, photoEditor)
storySaveProcessors.add(processor)
runProcessor(
processor,
Expand All @@ -100,7 +100,7 @@ class FrameSaveService : Service() {
processor.detachProgressListener()
}

private fun createOneProcessor(storyIndex: Int, photoEditor: PhotoEditor): StorySaveProcessor {
private fun createProcessor(storyIndex: Int, photoEditor: PhotoEditor): StorySaveProcessor {
return StorySaveProcessor(
this,
storyIndex,
Expand Down

0 comments on commit ee352fe

Please sign in to comment.