Skip to content

Commit 7da86f3

Browse files
author
Sonmez Kartal
committed
Fix wrong count of newlines between a class and other code errors
Signed-off-by: Sonmez Kartal <sonmez@koding.com>
1 parent 58341e5 commit 7da86f3

42 files changed

Lines changed: 94 additions & 43 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

client/app/lib/flux/environment/stores/activeleavingsharedmachineidstore.coffee

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@ module.exports = class ActiveLeavingSharedMachineIdStore extends KodingFluxStore
1111

1212
@on actions.SET_ACTIVE_LEAVING_SHARED_MACHINE_ID, @setMachineId
1313

14-
1514
setMachineId: (activeWidgetId, { id }) -> return id

client/app/lib/flux/environment/stores/expandedmachinelabelstore.coffee

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ module.exports = class ExpandedMachineLabelStore extends KodingFluxStore
1616
@on actions.LOAD_EXPANDED_MACHINE_LABEL_SUCCESS, @load
1717

1818

19-
load: (oldLabel, { label }) -> return label
19+
load: (oldLabel, { label }) ->
20+
21+
return label

client/app/lib/flux/environment/stores/ownmachinesstore.coffee

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ module.exports = class OwnMachinesStore extends KodingFluxStore
2121
machines.set machine._id, machine._id
2222

2323

24-
set: (machines, machine) -> machines.set machine._id, machine._id
24+
set: (machines, machine) ->
25+
26+
machines.set machine._id, machine._id

client/app/lib/flux/environment/stores/selectedtemplateidstore.coffee

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ module.exports = class SelectedTemplateIdStore extends KodingFluxStore
77

88
getInitialState: -> null
99

10-
initialize: ->
11-
12-
@on actions.SET_SELECTED_TEMPLATE_ID, @set
13-
10+
initialize: -> @on actions.SET_SELECTED_TEMPLATE_ID, @set
1411

1512
set: (oldSelectedId, { id }) -> id

client/app/lib/flux/socialapi/stores/channelthreadsstore.coffee

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ module.exports = class ChannelThreadsStore extends Nuclear.Store
139139
* @param {IMTreadCollection} nextState
140140
###
141141
handleRemoveMessageSuccess: (threads, { messageId }) ->
142-
143142
return removeMessage threads, messageId
144143

145144

client/app/lib/flux/socialapi/stores/messagethreadssstore.coffee

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ module.exports = class MessageThreadsStore extends KodingFluxStore
141141
* @return {IMThreadCollection} nextState
142142
###
143143
handleCreateMessageBegin: (threads, { clientRequestId }) ->
144-
145144
return threads.set clientRequestId, createThread clientRequestId
146145

147146

client/app/lib/flux/stores/loggedinuseremailstore.coffee

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ module.exports = class LoggedInUserEmailStore extends KodingFluxStore
1313
@on actions.LOAD_LOGGED_IN_USER_EMAIL_SUCCESS, @load
1414

1515

16-
load: (oldEmail, { email }) -> toImmutable email
16+
load: (oldEmail, { email }) ->
17+
toImmutable email

client/app/lib/flux/teams/stores/teamapiaccessstatestore.coffee

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@ module.exports = class TeamAPIAccessStateStore extends KodingFluxStore
1414
@on actions.SET_API_ACCESS_STATE, @set
1515

1616

17-
set: (oldState, { state }) -> state
17+
set: (oldState, { state }) ->
18+
19+
return state

client/app/lib/flux/teams/stores/teamotatokenstore.coffee

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ module.exports = class TeamOTATokenStore extends KodingFluxStore
1717
@on actions.LOAD_OTA_TOKEN_SUCCESS, @setValue
1818

1919

20-
setValue: (value, { cmd }) -> cmd
20+
setValue: (value, { cmd }) ->
21+
22+
return cmd

client/app/lib/flux/teams/stores/teamsearchinputvaluestore.coffee

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ module.exports = class TeamSearchInputValueStore extends KodingFluxStore
1616
@on actions.SET_SEARCH_INPUT_VALUE, @setValue
1717

1818

19-
setValue: (value, { newValue }) -> newValue
19+
setValue: (value, { newValue }) ->
20+
21+
return newValue

0 commit comments

Comments
 (0)