You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by jm...@apache.org on 2016/10/22 23:12:15 UTC

incubator-edgent git commit: Fixed Javadoc compile issue with unmappable ASCII character

Repository: incubator-edgent
Updated Branches:
  refs/heads/release1.0.0 79ba9f768 -> b5b7d0ab3


Fixed Javadoc compile issue with unmappable ASCII character


Project: http://git-wip-us.apache.org/repos/asf/incubator-edgent/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-edgent/commit/b5b7d0ab
Tree: http://git-wip-us.apache.org/repos/asf/incubator-edgent/tree/b5b7d0ab
Diff: http://git-wip-us.apache.org/repos/asf/incubator-edgent/diff/b5b7d0ab

Branch: refs/heads/release1.0.0
Commit: b5b7d0ab3dddde673966b8ceceb98229a5688268
Parents: 79ba9f7
Author: Justin Mclean <jm...@apache.org>
Authored: Sun Oct 23 10:12:06 2016 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Sun Oct 23 10:12:06 2016 +1100

----------------------------------------------------------------------
 .../java/org/apache/edgent/samples/connectors/elm327/Pids01.java | 4 ++--
 .../org/apache/edgent/samples/connectors/obd2/Obd2Streams.java   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/b5b7d0ab/samples/connectors/src/main/java/org/apache/edgent/samples/connectors/elm327/Pids01.java
----------------------------------------------------------------------
diff --git a/samples/connectors/src/main/java/org/apache/edgent/samples/connectors/elm327/Pids01.java b/samples/connectors/src/main/java/org/apache/edgent/samples/connectors/elm327/Pids01.java
index 10ecd1e..b42beb3 100644
--- a/samples/connectors/src/main/java/org/apache/edgent/samples/connectors/elm327/Pids01.java
+++ b/samples/connectors/src/main/java/org/apache/edgent/samples/connectors/elm327/Pids01.java
@@ -40,7 +40,7 @@ public enum Pids01 implements Cmd {
 	AVAILABLE_PIDS("00"),
 	
 	/**
-	 * Engine coolant temperature in �C.
+	 * Engine coolant temperature in degrees C.
 	 */
 	ENGINE_COOLANT_TEMP("05") {
 		@Override
@@ -86,7 +86,7 @@ public enum Pids01 implements Cmd {
 	},
 	
 	/**
-     * Engine air intake temperature in �C.
+     * Engine air intake temperature in degrees C.
      */
 	AIR_INTAKE_TEMP("0F"){
 		@Override

http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/b5b7d0ab/samples/connectors/src/main/java/org/apache/edgent/samples/connectors/obd2/Obd2Streams.java
----------------------------------------------------------------------
diff --git a/samples/connectors/src/main/java/org/apache/edgent/samples/connectors/obd2/Obd2Streams.java b/samples/connectors/src/main/java/org/apache/edgent/samples/connectors/obd2/Obd2Streams.java
index 1bce61a..13ab20a 100644
--- a/samples/connectors/src/main/java/org/apache/edgent/samples/connectors/obd2/Obd2Streams.java
+++ b/samples/connectors/src/main/java/org/apache/edgent/samples/connectors/obd2/Obd2Streams.java
@@ -56,7 +56,7 @@ public class Obd2Streams {
      * (slope) over the last minute, partitioned by parameter
      * {@link org.apache.edgent.samples.connectors.elm327.Cmd#PID pid}. Filter so that only
      * those with a rate of increase greater than
-     * or equal to 1�C/minute is present on the returned stream.
+     * or equal to 1 degree C/minute is present on the returned stream.
      * 
      * Temperatures included are
      * {@link org.apache.edgent.samples.connectors.elm327.Pids01#AIR_INTAKE_TEMP AIR_INTAKE_TEMP} and
@@ -78,7 +78,7 @@ public class Obd2Streams {
         TStream<JsonObject> temperatureRate = JsonAnalytics.aggregate(window, PID, VALUE, MAX, SLOPE);
 
         // Have the stream contain only tuples where
-        // the rise in temperatures >= 1�C/minute
+        // the rise in temperatures >= 1 degree C/minute
         temperatureRate = temperatureRate.filter(j -> {
             JsonObject v = getObject(j, "value");
             return v.has("SLOPE") && getDouble(v, "SLOPE") >= 1.0;