From 6d34112b44d4d9df8fe3c203a854d835940cc606 Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sat, 26 Dec 2015 15:22:23 +0300 Subject: [PATCH] Fix some non-ascii chars in comments --- .../jbi/component/toolkit/endpoint/EndpointLifeCycle.java | 2 +- .../com/sun/jbi/component/toolkit/util/task/JbiTask.java | 2 +- .../jbi/component/toolkit/util/task/JbiTaskResult.java | 4 ++-- .../sun/jbi/component/toolkit/util/task/TaskResult.java | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/endpoint/EndpointLifeCycle.java b/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/endpoint/EndpointLifeCycle.java index 491b893bf..1a24375b9 100755 --- a/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/endpoint/EndpointLifeCycle.java +++ b/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/endpoint/EndpointLifeCycle.java @@ -67,7 +67,7 @@ public interface EndpointLifeCycle { /** * Service engines "pause" executing business logic when it reaches * an invoke, whereas binding components (BCs) stop inbound external connections - * (or don’t service them). + * (or don't service them). * * @param srvcUnit The service unit for which to stop consuming. * @throws DeploymentException if an error occurs stopping consuming. diff --git a/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/JbiTask.java b/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/JbiTask.java index fc72c1e9b..3ed2015fa 100755 --- a/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/JbiTask.java +++ b/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/JbiTask.java @@ -31,7 +31,7 @@ package com.sun.jbi.component.toolkit.util.task; /** - * The document element, which, along with the document’s namespace, identifies + * The document element, which, along with the document's namespace, identifies * this as a JBI management task result/status report. * * @author Kevan Simpson diff --git a/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/JbiTaskResult.java b/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/JbiTaskResult.java index 3e271b48a..2af6aa562 100755 --- a/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/JbiTaskResult.java +++ b/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/JbiTaskResult.java @@ -31,8 +31,8 @@ package com.sun.jbi.component.toolkit.util.task; /** - * Used to report the results of the implementation’s execution of the task, - * and, optionally, the result of the component’s part of executing the task. + * Used to report the results of the implementation's execution of the task, + * and, optionally, the result of the component's part of executing the task. * This latter feature will appear only if applicable (the task involves * interaction with a component, and the task proceeds to the point where that * interaction was started.) diff --git a/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/TaskResult.java b/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/TaskResult.java index 938461647..591488519 100755 --- a/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/TaskResult.java +++ b/ojc-core/component-common/component-toolkit/src/com/sun/jbi/component/toolkit/util/task/TaskResult.java @@ -33,17 +33,17 @@ package com.sun.jbi.component.toolkit.util.task; import javax.jbi.component.ServiceUnitManager; /** - * Used to report either the results of the JBI implementation’s execution + * Used to report either the results of the JBI implementation's execution * of the task (a "framework" task result) OR the results of * interaction(s) with a component (a "component" task result). *

* A framework task result includes an optional element, - * is-cause-framework, which the implementation MUST set to “YES” + * is-cause-framework, which the implementation MUST set to "YES" * in cases where the JBI implementation is the cause of the task failing to execute. *

- * A component task result includes the component’s unique name and details + * A component task result includes the component's unique name and details * about the component task results. For example, this is used by the - * component’s {@link ServiceUnitManager} implementation to return the results + * component's {@link ServiceUnitManager} implementation to return the results * of {@link ServiceUnitManager#deploy(String, String)} and * {@link ServiceUnitManager#undeploy(String, String)}. *