Commit 0b024159 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #11450 from dreis2211:fix-typos

* pr/11450:
  Fix typos
parents edc43f75 67a84cd4
/* /*
* Copyright 2012-2017 the original author or authors. * Copyright 2012-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -210,7 +210,7 @@ public class AtomikosProperties { ...@@ -210,7 +210,7 @@ public class AtomikosProperties {
* different but related subtransactions. This setting has no effect on resource * different but related subtransactions. This setting has no effect on resource
* access within one and the same transaction. If you don't use subtransactions then * access within one and the same transaction. If you don't use subtransactions then
* this setting can be ignored. * this setting can be ignored.
* @param serialJtaTransactions if serial JTA transaction are supported * @param serialJtaTransactions if serial JTA transactions are supported
*/ */
public void setSerialJtaTransactions(boolean serialJtaTransactions) { public void setSerialJtaTransactions(boolean serialJtaTransactions) {
this.serialJtaTransactions = serialJtaTransactions; this.serialJtaTransactions = serialJtaTransactions;
......
/* /*
* Copyright 2012-2017 the original author or authors. * Copyright 2012-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -19,7 +19,7 @@ package org.springframework.boot.origin; ...@@ -19,7 +19,7 @@ package org.springframework.boot.origin;
import java.io.File; import java.io.File;
/** /**
* Interface that uniquely represents the origin of an item. For example, a item loaded * Interface that uniquely represents the origin of an item. For example, an item loaded
* from a {@link File} may have an origin made up of the file name along with line/column * from a {@link File} may have an origin made up of the file name along with line/column
* numbers. * numbers.
* <p> * <p>
......
/* /*
* Copyright 2012-2017 the original author or authors. * Copyright 2012-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -35,7 +35,7 @@ import org.springframework.util.ReflectionUtils; ...@@ -35,7 +35,7 @@ import org.springframework.util.ReflectionUtils;
import org.springframework.util.StringUtils; import org.springframework.util.StringUtils;
/** /**
* {@link WebServer} that can be used to control a Undertow web server. Usually this class * {@link WebServer} that can be used to control an Undertow web server. Usually this class
* should be created using the {@link UndertowReactiveWebServerFactory} and not directly. * should be created using the {@link UndertowReactiveWebServerFactory} and not directly.
* *
* @author Ivan Sopov * @author Ivan Sopov
......
/* /*
* Copyright 2012-2017 the original author or authors. * Copyright 2012-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -81,7 +81,7 @@ public abstract class SpringBootServletInitializer implements WebApplicationInit ...@@ -81,7 +81,7 @@ public abstract class SpringBootServletInitializer implements WebApplicationInit
@Override @Override
public void onStartup(ServletContext servletContext) throws ServletException { public void onStartup(ServletContext servletContext) throws ServletException {
// Logger initialization is deferred in case a ordered // Logger initialization is deferred in case an ordered
// LogServletContextInitializer is being used // LogServletContextInitializer is being used
this.logger = LogFactory.getLog(getClass()); this.logger = LogFactory.getLog(getClass());
WebApplicationContext rootAppContext = createRootApplicationContext( WebApplicationContext rootAppContext = createRootApplicationContext(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment