Very minor log messages tweaks for grammar and/or consistency.
Patch by: bruce
Review by: mmendez (TBR since it's low risk)
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2102 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/core/ext/typeinfo/TypeOracle.java b/dev/core/src/com/google/gwt/core/ext/typeinfo/TypeOracle.java
index 8eac005..6a0e534 100644
--- a/dev/core/src/com/google/gwt/core/ext/typeinfo/TypeOracle.java
+++ b/dev/core/src/com/google/gwt/core/ext/typeinfo/TypeOracle.java
@@ -669,7 +669,7 @@
TreeLogger.DEBUG,
"Scanning source for uses of the deprecated "
+ TAG_TYPEARGS
- + " javadoc annotation; Please use Java parameterized types instead",
+ + " javadoc annotation; please use Java parameterized types instead",
null);
consumeTypeArgMetaData(logger, getTypes());
}
diff --git a/user/src/com/google/gwt/user/rebind/rpc/SerializableTypeOracleBuilder.java b/user/src/com/google/gwt/user/rebind/rpc/SerializableTypeOracleBuilder.java
index e5bc705..6a343a1 100644
--- a/user/src/com/google/gwt/user/rebind/rpc/SerializableTypeOracleBuilder.java
+++ b/user/src/com/google/gwt/user/rebind/rpc/SerializableTypeOracleBuilder.java
@@ -807,7 +807,7 @@
logger,
isSpeculative,
type.getParameterizedQualifiedSourceName()
- + " is a local type, it will be excluded from the set of serializable types",
+ + " is a local type; it will be excluded from the set of serializable types",
tic);
return false;
}
@@ -817,7 +817,7 @@
logger,
isSpeculative,
type.getParameterizedQualifiedSourceName()
- + " is nested but not static, it will be excluded from the set of serializable types",
+ + " is nested but not static; it will be excluded from the set of serializable types",
tic);
return false;
}
@@ -1013,7 +1013,7 @@
TreeLogger.DEBUG,
"Type '"
+ classType.getQualifiedSourceName()
- + "' should be parameterized to help the compiler produce the smallest code size possible for your module.",
+ + "' should be parameterized to help the compiler produce the smallest code size possible for your module",
null);
if (classType.isAssignableTo(collectionClass)
@@ -1069,7 +1069,7 @@
// Fail since ? super T for any T implies object also
markAsUninstantiableAndLog(logger, isSpeculative,
"In order to produce smaller client-side code, 'Object' is not allowed; '"
- + wildcard.getQualifiedSourceName() + "' includes Object.", tic);
+ + wildcard.getQualifiedSourceName() + "' includes Object", tic);
success = false;
} else {