Skip to content

Commit

Permalink
[eol] Fix end of file markers
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Aug 27, 2023
1 parent bd48866 commit 722e3ba
Show file tree
Hide file tree
Showing 36 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* text=auto
* text=auto
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

# Depends On Database Initialization Detectors
org.springframework.boot.sql.init.dependency.DependsOnDatabaseInitializationDetector=\
org.mybatis.spring.boot.autoconfigure.MybatisDependsOnDatabaseInitializationDetector
org.mybatis.spring.boot.autoconfigure.MybatisDependsOnDatabaseInitializationDetector
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ li.en {background: url('../images/en.png') left no-repeat;padding-left: 32px; ma
li.es {background: url('../images/es.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ja {background: url('../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px}
li.zh {background: url('../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px;
li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px}
li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px;
li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px}
li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px;
li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px}
li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px;
li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px}
li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
CREATE TABLE customer (
id int AUTO_INCREMENT NOT NULL PRIMARY KEY,
name varchar(50) NOT NULL
);
);
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
<root level="info">
<appender-ref ref="CONSOLE" />
</root>
</configuration>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
#

logging.level.root=WARN
logging.level.sample.mybatis.annotation.mapper=TRACE
logging.level.sample.mybatis.annotation.mapper=TRACE
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ mybatis.type-aliases-package=sample.mybatis.freemarker.domain

mybatis.scripting-language-driver.freemarker.template-file.base-dir=mappers/
mybatis.scripting-language-driver.freemarker.template-file.path-provider.includes-package-path=false
mybatis.scripting-language-driver.freemarker.template-file.path-provider.separate-directory-per-mapper=false
mybatis.scripting-language-driver.freemarker.template-file.path-provider.separate-directory-per-mapper=false
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
#

logging.level.root=WARN
logging.level.sample.mybatis.groovy.mapper=TRACE
logging.level.sample.mybatis.groovy.mapper=TRACE
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ class SampleKotlinApplication (private val cityMapper: CityMapper) : CommandLine

fun main(args: Array<String>) {
runApplication<SampleKotlinApplication>(*args)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ data class City(
var name: String? = null,
var state: String? = null,
var country: String? = null
)
)
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ interface CityMapper {
""")
fun findByState(@Param("state") state: String): City

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ class SampleMybatisApplicationMainTest {
assertThat(output).contains("City(id=1, name=San Francisco, state=CA, country=US)")
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ class SampleMybatisApplicationTest {
assertThat(output).contains("City(id=1, name=San Francisco, state=CA, country=US)")
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ package sample.mybatis.kotlin.mapper
import org.springframework.boot.autoconfigure.SpringBootApplication

@SpringBootApplication
class MapperTestApplication
class MapperTestApplication
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ mybatis.type-aliases-package=sample.mybatis.thymeleaf.domain

mybatis.scripting-language-driver.thymeleaf.template-file.base-dir=mappers/
mybatis.scripting-language-driver.thymeleaf.template-file.path-provider.includes-package-path=false
mybatis.scripting-language-driver.thymeleaf.template-file.path-provider.separate-directory-per-mapper=false
mybatis.scripting-language-driver.thymeleaf.template-file.path-provider.separate-directory-per-mapper=false
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ select
from
city
where
country = /*[# mb:p="country"]*/ 'US' /*[/]*/
country = /*[# mb:p="country"]*/ 'US' /*[/]*/
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ select
from
city
where
state = /*[# mb:p="state"]*/ 'CA' /*[/]*/
state = /*[# mb:p="state"]*/ 'CA' /*[/]*/
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ select
from
city
where
state = @{state}
state = @{state}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ select
from
city
where
state = @{state}
state = @{state}
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ server.port=18080
server.servlet.context-path=/mybatis-spring-boot-sample-war

logging.level.root=INFO
logging.level.sample.mybatis.war.mapper=TRACE
logging.level.sample.mybatis.war.mapper=TRACE
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
#

logging.level.root=INFO
logging.level.sample.mybatis.web.mapper=TRACE
logging.level.sample.mybatis.web.mapper=TRACE
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ public String toString() {
return getCity() + "," + getName() + "," + getAddress() + "," + getZip();
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

mybatis.config-location=classpath:mybatis-config.xml
logging.level.root=WARN
logging.level.sample.mybatis.xml.mapper=TRACE
logging.level.sample.mybatis.xml.mapper=TRACE
2 changes: 1 addition & 1 deletion mybatis-spring-boot-starter-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
<artifactId>mybatis-spring-boot-test-autoconfigure</artifactId>
</dependency>
</dependencies>
</project>
</project>
2 changes: 1 addition & 1 deletion mybatis-spring-boot-test-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@
<scope>test</scope>
</dependency>
</dependencies>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ li.en {background: url('../images/en.png') left no-repeat;padding-left: 32px; ma
li.es {background: url('../images/es.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ja {background: url('../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px}
li.zh {background: url('../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px;
li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px}
li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px;
li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px}
li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px;
li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px}
li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ li.en {background: url('../../images/en.png') left no-repeat;padding-left: 32px;
li.es {background: url('../../images/es.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ja {background: url('../../images/ja.png') left no-repeat;padding-left: 32px; margin: 10px}
li.zh {background: url('../../images/zh.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
li.ko {background: url('../../images/ko.png') left no-repeat;padding-left: 32px; margin: 10px}
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@

<menu ref="reports"/>
</body>
</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
<insert id="saveSample">
insert into sample values(#{id}, #{name})
</insert>
</mapper>
</mapper>

0 comments on commit 722e3ba

Please sign in to comment.