Skip to content

Commit

Permalink
Add .idea folder to .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
majorkik committed Apr 30, 2021
1 parent b71e063 commit 2084971
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 46 deletions.
17 changes: 1 addition & 16 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -133,22 +133,7 @@ obj/
/out/

# User-specific configurations
.idea/caches/
.idea/libraries/
.idea/shelf/
.idea/.name
.idea/compiler.xml
.idea/copyright/profiles_settings.xml
.idea/encodings.xml
.idea/misc.xml
.idea/scopes/scope_settings.xml
.idea/vcs.xml
.idea/jsLibraryMappings.xml
.idea/datasources.xml
.idea/dataSources.ids
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml
.idea/

# OS-specific files
.DS_Store
Expand Down
30 changes: 0 additions & 30 deletions .idea/jarRepositories.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class AuthorizationFragment : Fragment(R.layout.fragment_authorization) {
"true" -> {
requestToken?.let {
Logger.d("requestToken = $it")

viewModel.createSessionToken(it)
} ?: run {
viewModel.getRequestToken()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.majorik.moviebox.feature.navigation.presentation.my_ratings

import androidx.fragment.app.Fragment

class MyRatingsFragment : Fragment()

0 comments on commit 2084971

Please sign in to comment.