Author: wkeil Date: Mon Jul 28 23:58:28 2014 New Revision: 1614219 URL: http://svn.apache.org/r1614219 Log: DMAP-54: Improve Console example
Task-Url: https://issues.apache.org/jira/browse/DMAP-54 Modified: incubator/devicemap/trunk/examples/console/src/main/java/org/apache/devicemap/example/console/Example.java Modified: incubator/devicemap/trunk/examples/console/src/main/java/org/apache/devicemap/example/console/Example.java URL: http://svn.apache.org/viewvc/incubator/devicemap/trunk/examples/console/src/main/java/org/apache/devicemap/example/console/Example.java?rev=1614219&r1=1614218&r2=1614219&view=diff ============================================================================== --- incubator/devicemap/trunk/examples/console/src/main/java/org/apache/devicemap/example/console/Example.java (original) +++ incubator/devicemap/trunk/examples/console/src/main/java/org/apache/devicemap/example/console/Example.java Mon Jul 28 23:58:28 2014 @@ -32,7 +32,7 @@ public class Example { public static void main(String[] args) throws Exception { //create a client object, store this somewhere permanent - DeviceMapClient client = new DeviceMapClient(); + final DeviceMapClient client = new DeviceMapClient(); //load the device data, do this only once!!! client.initDeviceData(LoaderOption.JAR);
