This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new 8299e55174 Fix punctuation in documentation (etc → etc.) (#6339)
8299e55174 is described below
commit 8299e55174f2df7a673aa32c0a12c0b8dcc2782c
Author: lance <[email protected]>
AuthorDate: Mon Jan 12 17:33:24 2026 +0800
Fix punctuation in documentation (etc → etc.) (#6339)
Signed-off-by: lance <[email protected]>
---
core/src/main/java/org/apache/hop/core/Const.java | 2 +-
core/src/main/java/org/apache/hop/core/database/BaseDatabaseMeta.java | 2 +-
core/src/main/java/org/apache/hop/core/database/Database.java | 2 +-
.../java/org/apache/hop/core/database/DatabaseMetaInformation.java | 4 +++-
core/src/main/java/org/apache/hop/core/database/IDatabase.java | 2 +-
core/src/main/java/org/apache/hop/core/row/RowDataUtil.java | 2 +-
core/src/main/java/org/apache/hop/core/row/RowMeta.java | 3 +--
.../main/java/org/apache/hop/core/util/StringEvaluationResult.java | 2 +-
core/src/main/java/org/apache/hop/core/vfs/HopVfs.java | 2 +-
.../main/java/org/apache/hop/workflow/actions/util/FtpClientUtil.java | 2 +-
.../hop/workflow/actions/snowflake/messages/messages_en_US.properties | 2 +-
.../hop/workflow/actions/snowflake/messages/messages_fr_FR.properties | 2 +-
.../src/test/resources/xsd_issue/cbc-xml-schema-v1.0/CbcXML_v1.0.xsd | 4 ++--
.../main/java/org/apache/hop/databases/cassandra/util/CqlUtils.java | 4 ++--
.../apache/hop/pipeline/transforms/analyticquery/AnalyticQuery.java | 2 +-
.../org/apache/hop/pipeline/transforms/analyticquery/QueryField.java | 2 +-
.../pipeline/transforms/switchcase/messages/messages_en_US.properties | 2 +-
.../java/org/apache/hop/pipeline/transforms/csvinput/CsvInput.java | 2 +-
.../transforms/fileinput/TextFileCSVImportProgressDialog.java | 4 ++--
.../transforms/fileinput/text/TextFileCSVImportProgressDialog.java | 4 ++--
.../src/main/java/org/apache/hop/pipeline/transforms/tika/Tika.java | 2 +-
.../apache/hop/pipeline/transforms/webservices/wsdl/ComplexType.java | 2 +-
.../hop/ui/core/database/dialog/GetDatabaseInfoProgressDialog.java | 4 ++--
.../hop/ui/core/database/dialog/GetQueryFieldsProgressDialog.java | 2 +-
ui/src/main/java/org/apache/hop/ui/core/widget/TableView.java | 2 +-
.../org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java | 4 ++--
26 files changed, 34 insertions(+), 33 deletions(-)
diff --git a/core/src/main/java/org/apache/hop/core/Const.java
b/core/src/main/java/org/apache/hop/core/Const.java
index 49887bfc85..143f312429 100644
--- a/core/src/main/java/org/apache/hop/core/Const.java
+++ b/core/src/main/java/org/apache/hop/core/Const.java
@@ -1649,7 +1649,7 @@ public class Const {
}
/**
- * Get the primary IP address tied to a network interface (excluding
loop-back etc)
+ * Get the primary IP address tied to a network interface (excluding
loop-back etc.)
*
* @param networkInterfaceName the name of the network interface to
interrogate
* @return null if the network interface or address wasn't found.
diff --git
a/core/src/main/java/org/apache/hop/core/database/BaseDatabaseMeta.java
b/core/src/main/java/org/apache/hop/core/database/BaseDatabaseMeta.java
index d541fc3316..a664e07789 100644
--- a/core/src/main/java/org/apache/hop/core/database/BaseDatabaseMeta.java
+++ b/core/src/main/java/org/apache/hop/core/database/BaseDatabaseMeta.java
@@ -1415,7 +1415,7 @@ public abstract class BaseDatabaseMeta implements
Cloneable, IDatabase {
/**
* @param string
* @return A string that is properly quoted for use in a SQL statement
(insert, update, delete,
- * etc)
+ * etc.)
*/
@Override
public String quoteSqlString(String string) {
diff --git a/core/src/main/java/org/apache/hop/core/database/Database.java
b/core/src/main/java/org/apache/hop/core/database/Database.java
index 2e16fde41b..79cde7173a 100644
--- a/core/src/main/java/org/apache/hop/core/database/Database.java
+++ b/core/src/main/java/org/apache/hop/core/database/Database.java
@@ -1541,7 +1541,7 @@ public class Database implements IVariables,
ILoggingObject, AutoCloseable {
log.snap(Metrics.METRIC_DATABASE_PREPARE_SQL_STOP,
databaseMeta.getName());
log.snap(Metrics.METRIC_DATABASE_SQL_VALUES_START,
databaseMeta.getName());
- setValues(params, data); // set the dates etc!
+ setValues(params, data); // set the dates etc.
log.snap(Metrics.METRIC_DATABASE_SQL_VALUES_STOP,
databaseMeta.getName());
if (canWeSetFetchSize(pstmt)) {
diff --git
a/core/src/main/java/org/apache/hop/core/database/DatabaseMetaInformation.java
b/core/src/main/java/org/apache/hop/core/database/DatabaseMetaInformation.java
index ca54736a04..77d5c7eaab 100644
---
a/core/src/main/java/org/apache/hop/core/database/DatabaseMetaInformation.java
+++
b/core/src/main/java/org/apache/hop/core/database/DatabaseMetaInformation.java
@@ -32,7 +32,9 @@ import org.apache.hop.core.util.Utils;
import org.apache.hop.core.variables.IVariables;
import org.apache.hop.i18n.BaseMessages;
-/** Contains the schema's, catalogs, tables, views, synonyms, etc we can find
in the databases... */
+/**
+ * Contains the schema's, catalogs, tables, views, synonyms, etc. we can find
in the databases...
+ */
public class DatabaseMetaInformation {
private static final Class<?> PKG = Database.class;
diff --git a/core/src/main/java/org/apache/hop/core/database/IDatabase.java
b/core/src/main/java/org/apache/hop/core/database/IDatabase.java
index 3d40f72ae3..f38aee46b7 100644
--- a/core/src/main/java/org/apache/hop/core/database/IDatabase.java
+++ b/core/src/main/java/org/apache/hop/core/database/IDatabase.java
@@ -850,7 +850,7 @@ public interface IDatabase extends Cloneable {
*
* @param string
* @return A string that is properly quoted for use in a SQL statement
(insert, update, delete,
- * etc)
+ * etc.)
*/
String quoteSqlString(String string);
diff --git a/core/src/main/java/org/apache/hop/core/row/RowDataUtil.java
b/core/src/main/java/org/apache/hop/core/row/RowDataUtil.java
index 1720b54438..359fc94397 100644
--- a/core/src/main/java/org/apache/hop/core/row/RowDataUtil.java
+++ b/core/src/main/java/org/apache/hop/core/row/RowDataUtil.java
@@ -19,7 +19,7 @@ package org.apache.hop.core.row;
/**
* This class of static methods can be used to manipulate rows: add, delete,
resize, etc... That
- * way, when we want to go for a metadata driven system with hiding deletes,
over sized arrays etc,
+ * way, when we want to go for a metadata driven system with hiding deletes,
over sized arrays etc.,
* we can change these methods to find occurrences.
*
* <p>For example, a transform adding a field to the row should always call
diff --git a/core/src/main/java/org/apache/hop/core/row/RowMeta.java
b/core/src/main/java/org/apache/hop/core/row/RowMeta.java
index b99c3df310..731be000e6 100644
--- a/core/src/main/java/org/apache/hop/core/row/RowMeta.java
+++ b/core/src/main/java/org/apache/hop/core/row/RowMeta.java
@@ -722,8 +722,7 @@ public class RowMeta implements IRowMeta {
}
// If there are 0 values in the row, we write a marker flag to be able
to detect an EOF on the
- // other end (sockets
- // etc)
+ // other end (sockets etc.)
//
if (size() == 0) {
try {
diff --git
a/core/src/main/java/org/apache/hop/core/util/StringEvaluationResult.java
b/core/src/main/java/org/apache/hop/core/util/StringEvaluationResult.java
index 00bfe1821f..13ccc01dec 100644
--- a/core/src/main/java/org/apache/hop/core/util/StringEvaluationResult.java
+++ b/core/src/main/java/org/apache/hop/core/util/StringEvaluationResult.java
@@ -21,7 +21,7 @@ import org.apache.hop.core.row.IValueMeta;
/**
* Utility class to hold the result of a set of string evaluations: a valid
conversion metadata
- * object (with data type, trim options, etc) and the minimum and maximum
value encountered.
+ * object (with data type, trim options, etc.) and the minimum and maximum
value encountered.
*/
public class StringEvaluationResult {
diff --git a/core/src/main/java/org/apache/hop/core/vfs/HopVfs.java
b/core/src/main/java/org/apache/hop/core/vfs/HopVfs.java
index 74449c8172..f6f85fc44e 100644
--- a/core/src/main/java/org/apache/hop/core/vfs/HopVfs.java
+++ b/core/src/main/java/org/apache/hop/core/vfs/HopVfs.java
@@ -315,7 +315,7 @@ public class HopVfs {
* Read a text file (like an XML document). WARNING DO NOT USE FOR DATA
FILES.
*
* @param vfsFilename the filename or URL to read from
- * @param charSetName the character set of the string (UTF-8, ISO8859-1, etc)
+ * @param charSetName the character set of the string (UTF-8, ISO8859-1,
etc.)
* @return The content of the file as a String
* @throws org.apache.hop.core.exception.HopFileException
*/
diff --git
a/plugins/actions/ftp/src/main/java/org/apache/hop/workflow/actions/util/FtpClientUtil.java
b/plugins/actions/ftp/src/main/java/org/apache/hop/workflow/actions/util/FtpClientUtil.java
index 6454fdc017..eb46582bef 100644
---
a/plugins/actions/ftp/src/main/java/org/apache/hop/workflow/actions/util/FtpClientUtil.java
+++
b/plugins/actions/ftp/src/main/java/org/apache/hop/workflow/actions/util/FtpClientUtil.java
@@ -104,7 +104,7 @@ public class FtpClientUtil {
PKG, "ActionFTP.SetTimeout",
String.valueOf(connection.getTimeout())));
}
- // The control encoding (special filename characters etc)
+ // The control encoding (special filename characters etc.)
//
if (StringUtils.isNotEmpty(connection.getControlEncoding())) {
String realControlEncoding =
variables.resolve(connection.getControlEncoding());
diff --git
a/plugins/actions/snowflake/src/main/resources/org/apache/hop/workflow/actions/snowflake/messages/messages_en_US.properties
b/plugins/actions/snowflake/src/main/resources/org/apache/hop/workflow/actions/snowflake/messages/messages_en_US.properties
index c8d962d3c6..f421290553 100644
---
a/plugins/actions/snowflake/src/main/resources/org/apache/hop/workflow/actions/snowflake/messages/messages_en_US.properties
+++
b/plugins/actions/snowflake/src/main/resources/org/apache/hop/workflow/actions/snowflake/messages/messages_en_US.properties
@@ -20,7 +20,7 @@
Action.Description=This action allows you to manage Snowflake
warehouses\nperforming actions such as creating, dropping, and resuming them.
Action.Name=Snowflake Warehouse Manager
Category.Description=Utility
-SnowflakeWarehouseManager.Dialog.Action.Alter=Alter warehouse (resize, change
type, etc)
+SnowflakeWarehouseManager.Dialog.Action.Alter=Alter warehouse (resize, change
type, etc.)
SnowflakeWarehouseManager.Dialog.Action.Create=Create warehouse
SnowflakeWarehouseManager.Dialog.Action.Drop=Drop warehouse
SnowflakeWarehouseManager.Dialog.Action.Label=Action
diff --git
a/plugins/actions/snowflake/src/main/resources/org/apache/hop/workflow/actions/snowflake/messages/messages_fr_FR.properties
b/plugins/actions/snowflake/src/main/resources/org/apache/hop/workflow/actions/snowflake/messages/messages_fr_FR.properties
index d8ac6e9500..9f2c2b6aa5 100644
---
a/plugins/actions/snowflake/src/main/resources/org/apache/hop/workflow/actions/snowflake/messages/messages_fr_FR.properties
+++
b/plugins/actions/snowflake/src/main/resources/org/apache/hop/workflow/actions/snowflake/messages/messages_fr_FR.properties
@@ -17,7 +17,7 @@
#
#
-SnowflakeWarehouseManager.Dialog.Action.Alter=Modifier l''entrep\u00F4t de
donn\u00E9es (resize, change type, etc)
+SnowflakeWarehouseManager.Dialog.Action.Alter=Modifier l''entrep\u00F4t de
donn\u00E9es (resize, change type, etc.)
SnowflakeWarehouseManager.Dialog.Action.Create=Cr\u00E9er l''entrep\u00F4t de
donn\u00E9es
SnowflakeWarehouseManager.Dialog.Action.Drop=Supprimer l''entrep\u00F4t de
donn\u00E9es
SnowflakeWarehouseManager.Dialog.Action.Label=Action
diff --git
a/plugins/actions/xml/src/test/resources/xsd_issue/cbc-xml-schema-v1.0/CbcXML_v1.0.xsd
b/plugins/actions/xml/src/test/resources/xsd_issue/cbc-xml-schema-v1.0/CbcXML_v1.0.xsd
index f345b9ecfe..9b8db79882 100644
---
a/plugins/actions/xml/src/test/resources/xsd_issue/cbc-xml-schema-v1.0/CbcXML_v1.0.xsd
+++
b/plugins/actions/xml/src/test/resources/xsd_issue/cbc-xml-schema-v1.0/CbcXML_v1.0.xsd
@@ -299,7 +299,7 @@ taken from the ISO codelist 4217 and added in attribute
currCode.
<!-- Message specification: Data identifying and describing the message
as a whole -->
<xsd:complexType name="MessageSpec_Type">
<xsd:annotation>
- <xsd:documentation xml:lang="en">Information in the
message header identifies the Tax Administration that is sending the message.
It specifies when the message was created, what period (normally a year) the
report is for, and the nature of the report (original, corrected, supplemental,
etc).</xsd:documentation>
+ <xsd:documentation xml:lang="en">Information in the
message header identifies the Tax Administration that is sending the message.
It specifies when the message was created, what period (normally a year) the
report is for, and the nature of the report (original, corrected, supplemental,
etc.).</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="SendingEntityIN" type="xsd:string"
minOccurs="0"/>
@@ -469,7 +469,7 @@ Equivalents</xsd:documentation>
<xsd:documentation xml:lang="en">
This container brings together all data about an organisation as a party. Name
and address are required components and each can
be present more than once to enable as complete a description as possible.
Whenever possible one or more identifiers (TIN
-etc) should be added as well as a residence country code. Additional data that
describes and identifies the party can be
+etc.) should be added as well as a residence country code. Additional data
that describes and identifies the party can be
given . The code for the legal type according to the OECD codelist must be
added. The structures of
all of the subelements are defined elsewhere in this
schema.</xsd:documentation>
</xsd:annotation>
diff --git
a/plugins/tech/cassandra/src/main/java/org/apache/hop/databases/cassandra/util/CqlUtils.java
b/plugins/tech/cassandra/src/main/java/org/apache/hop/databases/cassandra/util/CqlUtils.java
index ecb51b63b7..b33c19833a 100644
---
a/plugins/tech/cassandra/src/main/java/org/apache/hop/databases/cassandra/util/CqlUtils.java
+++
b/plugins/tech/cassandra/src/main/java/org/apache/hop/databases/cassandra/util/CqlUtils.java
@@ -232,8 +232,8 @@ public class CqlUtils {
}
/**
- * Clean input from all unnecessary whitespaces: double and etc., before
comma, inside functions
- * and etc. Add whitespace after comma if it is absent.
+ * Clean input from all unnecessary whitespaces: double etc., before comma,
inside functions etc.
+ * Add whitespace after comma if it is absent.
*
* @param input the input string
* @return cleaned string
diff --git
a/plugins/transforms/analyticquery/src/main/java/org/apache/hop/pipeline/transforms/analyticquery/AnalyticQuery.java
b/plugins/transforms/analyticquery/src/main/java/org/apache/hop/pipeline/transforms/analyticquery/AnalyticQuery.java
index 4695e84781..212ef505df 100644
---
a/plugins/transforms/analyticquery/src/main/java/org/apache/hop/pipeline/transforms/analyticquery/AnalyticQuery.java
+++
b/plugins/transforms/analyticquery/src/main/java/org/apache/hop/pipeline/transforms/analyticquery/AnalyticQuery.java
@@ -28,7 +28,7 @@ import org.apache.hop.pipeline.PipelineMeta;
import org.apache.hop.pipeline.transform.BaseTransform;
import org.apache.hop.pipeline.transform.TransformMeta;
-/** Performs analytic queries (LEAD/LAG, etc) based on a group */
+/** Performs analytic queries (LEAD/LAG, etc.) based on a group */
public class AnalyticQuery extends BaseTransform<AnalyticQueryMeta,
AnalyticQueryData> {
private static final Class<?> PKG = AnalyticQuery.class;
diff --git
a/plugins/transforms/analyticquery/src/main/java/org/apache/hop/pipeline/transforms/analyticquery/QueryField.java
b/plugins/transforms/analyticquery/src/main/java/org/apache/hop/pipeline/transforms/analyticquery/QueryField.java
index 45bfb76e2b..5a9e9d1b13 100644
---
a/plugins/transforms/analyticquery/src/main/java/org/apache/hop/pipeline/transforms/analyticquery/QueryField.java
+++
b/plugins/transforms/analyticquery/src/main/java/org/apache/hop/pipeline/transforms/analyticquery/QueryField.java
@@ -77,7 +77,7 @@ public class QueryField {
@HopMetadataProperty(key = "subject", injectionKey = "OUTPUT.SUBJECT_FIELD")
private String subjectField;
- /** Aggregate type (LEAD/LAG, etc) */
+ /** Aggregate type (LEAD/LAG, etc.) */
// @Injection(group = "fields", name = "OUTPUT.AGGREGATE_TYPE")
@HopMetadataProperty(key = "type", injectionKey = "OUTPUT.AGGREGATE_TYPE")
private AggregateType aggregateType;
diff --git
a/plugins/transforms/switchcase/src/main/resources/org/apache/hop/pipeline/transforms/switchcase/messages/messages_en_US.properties
b/plugins/transforms/switchcase/src/main/resources/org/apache/hop/pipeline/transforms/switchcase/messages/messages_en_US.properties
index da7bf6a38c..06a1df09f6 100644
---
a/plugins/transforms/switchcase/src/main/resources/org/apache/hop/pipeline/transforms/switchcase/messages/messages_en_US.properties
+++
b/plugins/transforms/switchcase/src/main/resources/org/apache/hop/pipeline/transforms/switchcase/messages/messages_en_US.properties
@@ -52,7 +52,7 @@ SwitchCaseMeta.Injection.SWITCH_CASE_TARGET.CASE_VALUE=The
value to switch over.
SwitchCaseMeta.Injection.VALUE_DECIMAL=The decimal symbol that is used.
SwitchCaseMeta.Injection.VALUE_FORMAT=The numeric and date format to use when
parsing values.
SwitchCaseMeta.Injection.VALUE_GROUP=The grouping symbol that is used.
-SwitchCaseMeta.Injection.VALUE_TYPE=The type of the value used for the switch
(string/numeric/etc).
+SwitchCaseMeta.Injection.VALUE_TYPE=The type of the value used for the switch
(string/numeric/etc.).
SwitchCaseMeta.keyword=switch,case
SwitchCaseMeta.TargetStream.CaseTarget.Description=The case target for value
''{0}''
SwitchCaseMeta.TargetStream.Default.Description=The default target transform
diff --git
a/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/csvinput/CsvInput.java
b/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/csvinput/CsvInput.java
index 129fb53345..8e41470469 100644
---
a/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/csvinput/CsvInput.java
+++
b/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/csvinput/CsvInput.java
@@ -600,7 +600,7 @@ public class CsvInput extends BaseTransform<CsvInputMeta,
CsvInputData> {
// The strategy is as follows...
// We read a block of byte[] from the file.
- // We scan for the separators in the file (NOT for line feeds etc)
+ // We scan for the separators in the file (NOT for line feeds etc.)
// Then we scan that block of data.
// We keep a byte[] that we extend if needed..
// At the end of the block we read another, etc.
diff --git
a/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/fileinput/TextFileCSVImportProgressDialog.java
b/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/fileinput/TextFileCSVImportProgressDialog.java
index 0f6882ed84..41032c4b9d 100644
---
a/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/fileinput/TextFileCSVImportProgressDialog.java
+++
b/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/fileinput/TextFileCSVImportProgressDialog.java
@@ -51,7 +51,7 @@ import org.eclipse.swt.widgets.Shell;
/**
* Takes care of displaying a dialog that will handle the wait while we're
finding out what tables,
- * views etc we can reach in the database.
+ * views etc. we can reach in the database.
*
* @deprecated replaced by implementation in the ...transforms.fileinput.text
package
*/
@@ -83,7 +83,7 @@ public class TextFileCSVImportProgressDialog implements
ICsvInputAwareImportProg
private EncodingType encodingType;
/**
- * Creates a new dialog that will handle the wait while we're finding out
what tables, views etc
+ * Creates a new dialog that will handle the wait while we're finding out
what tables, views etc.
* we can reach in the database.
*/
public TextFileCSVImportProgressDialog(
diff --git
a/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/fileinput/text/TextFileCSVImportProgressDialog.java
b/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/fileinput/text/TextFileCSVImportProgressDialog.java
index eff0121990..1d86605332 100644
---
a/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/fileinput/text/TextFileCSVImportProgressDialog.java
+++
b/plugins/transforms/textfile/src/main/java/org/apache/hop/pipeline/transforms/fileinput/text/TextFileCSVImportProgressDialog.java
@@ -53,7 +53,7 @@ import org.eclipse.swt.widgets.Shell;
/**
* Takes care of displaying a dialog that will handle the wait while we're
finding out what tables,
- * views etc we can reach in the database.
+ * views etc. we can reach in the database.
*/
public class TextFileCSVImportProgressDialog implements
ICsvInputAwareImportProgressDialog {
private static final Class<?> PKG = TextFileInputMeta.class;
@@ -82,7 +82,7 @@ public class TextFileCSVImportProgressDialog implements
ICsvInputAwareImportProg
private EncodingType encodingType;
/**
- * Creates a new dialog that will handle the wait while we're finding out
what tables, views etc
+ * Creates a new dialog that will handle the wait while we're finding out
what tables, views etc.
* we can reach in the database.
*/
public TextFileCSVImportProgressDialog(
diff --git
a/plugins/transforms/tika/src/main/java/org/apache/hop/pipeline/transforms/tika/Tika.java
b/plugins/transforms/tika/src/main/java/org/apache/hop/pipeline/transforms/tika/Tika.java
index c10db7be8a..6ef692275d 100755
---
a/plugins/transforms/tika/src/main/java/org/apache/hop/pipeline/transforms/tika/Tika.java
+++
b/plugins/transforms/tika/src/main/java/org/apache/hop/pipeline/transforms/tika/Tika.java
@@ -276,7 +276,7 @@ public class Tika extends BaseTransform<TikaMeta, TikaData>
{
* Read a text file.
*
* @param vfsFilename the filename or URL to read from
- * @param encoding the character set of the string (UTF-8, ISO8859-1, etc)
+ * @param encoding the character set of the string (UTF-8, ISO8859-1, etc.)
* @return The content of the file as a String
* @throws HopException
*/
diff --git
a/plugins/transforms/webservices/src/main/java/org/apache/hop/pipeline/transforms/webservices/wsdl/ComplexType.java
b/plugins/transforms/webservices/src/main/java/org/apache/hop/pipeline/transforms/webservices/wsdl/ComplexType.java
index dfcc0cd30f..3334ad7499 100644
---
a/plugins/transforms/webservices/src/main/java/org/apache/hop/pipeline/transforms/webservices/wsdl/ComplexType.java
+++
b/plugins/transforms/webservices/src/main/java/org/apache/hop/pipeline/transforms/webservices/wsdl/ComplexType.java
@@ -27,7 +27,7 @@ import org.w3c.dom.Element;
/*
This looks a little scary, but isn't so bad. Pretty much all that needs to be
done here is to
parse a NAMED complex type in the wsdl's types section. We really only care
about the <element>'s
-contained within the complex type. The semantics don't matter (choice,
sequence, etc). The end result
+contained within the complex type. The semantics don't matter (choice,
sequence, etc.). The end result
should be a ComplexType object which contains only elements. This type will
be used during client
type registration.
*/
diff --git
a/ui/src/main/java/org/apache/hop/ui/core/database/dialog/GetDatabaseInfoProgressDialog.java
b/ui/src/main/java/org/apache/hop/ui/core/database/dialog/GetDatabaseInfoProgressDialog.java
index 7d119855e6..7421bb0a83 100644
---
a/ui/src/main/java/org/apache/hop/ui/core/database/dialog/GetDatabaseInfoProgressDialog.java
+++
b/ui/src/main/java/org/apache/hop/ui/core/database/dialog/GetDatabaseInfoProgressDialog.java
@@ -35,7 +35,7 @@ import org.eclipse.swt.widgets.Shell;
/**
* Takes care of displaying a dialog that will handle the wait while we're
finding out what tables,
- * views etc we can reach in the database.
+ * views etc. we can reach in the database.
*/
public class GetDatabaseInfoProgressDialog {
private static final Class<?> PKG = GetDatabaseInfoProgressDialog.class;
@@ -45,7 +45,7 @@ public class GetDatabaseInfoProgressDialog {
private DatabaseMeta databaseMeta;
/**
- * Creates a new dialog that will handle the wait while we're finding out
what tables, views etc
+ * Creates a new dialog that will handle the wait while we're finding out
what tables, views etc.
* we can reach in the database.
*/
public GetDatabaseInfoProgressDialog(
diff --git
a/ui/src/main/java/org/apache/hop/ui/core/database/dialog/GetQueryFieldsProgressDialog.java
b/ui/src/main/java/org/apache/hop/ui/core/database/dialog/GetQueryFieldsProgressDialog.java
index 118f6c072f..1ac9e60856 100644
---
a/ui/src/main/java/org/apache/hop/ui/core/database/dialog/GetQueryFieldsProgressDialog.java
+++
b/ui/src/main/java/org/apache/hop/ui/core/database/dialog/GetQueryFieldsProgressDialog.java
@@ -46,7 +46,7 @@ public class GetQueryFieldsProgressDialog {
private Database db;
/**
- * Creates a new dialog that will handle the wait while we're finding out
what tables, views etc
+ * Creates a new dialog that will handle the wait while we're finding out
what tables, views etc.
* we can reach in the database.
*/
public GetQueryFieldsProgressDialog(
diff --git a/ui/src/main/java/org/apache/hop/ui/core/widget/TableView.java
b/ui/src/main/java/org/apache/hop/ui/core/widget/TableView.java
index 194b76f383..2421827ffb 100644
--- a/ui/src/main/java/org/apache/hop/ui/core/widget/TableView.java
+++ b/ui/src/main/java/org/apache/hop/ui/core/widget/TableView.java
@@ -572,7 +572,7 @@ public class TableView extends Composite {
/*
* It seems there is an other keyListener active to help control the
cursor. There is support for keys like
- * LEFT/RIGHT/UP/DOWN/HOME/END/etc It presents us with a problem because
we only get the position of the row/column
+ * LEFT/RIGHT/UP/DOWN/HOME/END/etc. It presents us with a problem because
we only get the position of the row/column
* AFTER the other listener did its workflow. Therefor we added global
variables prevRowNr and prevColNr
*/
table.addKeyListener(createTableKeyListener());
diff --git
a/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
b/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
index c12b049db0..2f2c894c35 100644
---
a/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
+++
b/ui/src/main/java/org/apache/hop/ui/hopgui/file/pipeline/HopGuiPipelineGraph.java
@@ -541,7 +541,7 @@ public class HopGuiPipelineGraph extends HopGuiAbstractGraph
setBackground(GuiResource.getInstance().getColorBackground());
- // Add keyboard listeners from the main GUI and this class (toolbar etc)
to the canvas. That's
+ // Add keyboard listeners from the main GUI and this class (toolbar etc.)
to the canvas. That's
// where the focus should be
//
hopGui.replaceKeyboardShortcutListeners(this);
@@ -4860,7 +4860,7 @@ public class HopGuiPipelineGraph extends
HopGuiAbstractGraph
final List<IRowMeta> rowMetas = new ArrayList<>();
final List<List<Object[]>> rowBuffers = new ArrayList<>();
- // Assemble the buffers etc in the old style...
+ // Assemble the buffers etc. in the old style...
//
for (TransformMeta transformMeta :
lastPipelineDebugMeta.getTransformDebugMetaMap().keySet()) {
TransformDebugMeta transformDebugMeta =