Skip to content

Commit d848be8

Browse files
authored
Merge pull request #234 from nhaarman/2.x-cleanup
Restructure methods into files
2 parents 978be14 + 94768b1 commit d848be8

31 files changed

+2352
-2551
lines changed

.gitignore

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,15 @@ out/
66
!gradle-wrapper.jar
77
*.iml
88

9-
.idea/
10-
!/.idea/codeStyleSettings.xml
9+
.idea/caches/*
10+
.idea/compiler.xml
11+
.idea/gradle.xml
12+
.idea/kotlinc.xml
13+
.idea/libraries/*
14+
.idea/misc.xml
15+
.idea/modules.xml
16+
.idea/runConfigurations.xml
17+
.idea/shelf
18+
.idea/uiDesigner.xml
19+
.idea/vcs.xml
20+
.idea/workspace.xml

.idea/codeStyles/Project.xml

Lines changed: 276 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/MIT.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradle.properties

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1 @@
1-
#
2-
# The MIT License
3-
#
4-
# Copyright (c) 2016 Niek Haarman
5-
# Copyright (c) 2007 Mockito contributors
6-
#
7-
# Permission is hereby granted, free of charge, to any person obtaining a copy
8-
# of this software and associated documentation files (the "Software"), to deal
9-
# in the Software without restriction, including without limitation the rights
10-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11-
# copies of the Software, and to permit persons to whom the Software is
12-
# furnished to do so, subject to the following conditions:
13-
#
14-
# The above copyright notice and this permission notice shall be included in
15-
# all copies or substantial portions of the Software.
16-
#
17-
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23-
# THE SOFTWARE.
24-
#
25-
26-
isRelease = false
1+
isRelease=false

0 commit comments

Comments
 (0)