diff options
author | fmoga <fmoga@13f79535-47bb-0310-9956-ffa450edef68> | 2011-07-27 15:45:24 +0000 |
---|---|---|
committer | fmoga <fmoga@13f79535-47bb-0310-9956-ffa450edef68> | 2011-07-27 15:45:24 +0000 |
commit | 00abc80dcd81d642fd5d3473ea0f536f05aa53d9 (patch) | |
tree | 74c20732b360a16e3a46fc9cd68abacf009d2585 /sca-java-2.x/trunk/samples/learning-more/binding-websocket | |
parent | c91948fe794ae044848935d7aca1612bfc05f29d (diff) |
Add license info in plain text files and update sample logic not to process comments.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151507 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/samples/learning-more/binding-websocket')
2 files changed, 21 insertions, 3 deletions
diff --git a/sca-java-2.x/trunk/samples/learning-more/binding-websocket/autocomplete-webapp/src/main/java/sample/CountryRepositoryImpl.java b/sca-java-2.x/trunk/samples/learning-more/binding-websocket/autocomplete-webapp/src/main/java/sample/CountryRepositoryImpl.java index 5878f0bf38..17ce39a10e 100644 --- a/sca-java-2.x/trunk/samples/learning-more/binding-websocket/autocomplete-webapp/src/main/java/sample/CountryRepositoryImpl.java +++ b/sca-java-2.x/trunk/samples/learning-more/binding-websocket/autocomplete-webapp/src/main/java/sample/CountryRepositoryImpl.java @@ -53,9 +53,11 @@ public class CountryRepositoryImpl implements CountryRepository { .getResourceAsStream(fileName))); String line; while ((line = reader.readLine()) != null) { - Country c = new Country(); - c.setName(line); - countries.add(c); + if (!line.startsWith("#")) { + Country c = new Country(); + c.setName(line); + countries.add(c); + } } } catch (FileNotFoundException e) { e.printStackTrace(); diff --git a/sca-java-2.x/trunk/samples/learning-more/binding-websocket/autocomplete-webapp/src/main/resources/countries.txt b/sca-java-2.x/trunk/samples/learning-more/binding-websocket/autocomplete-webapp/src/main/resources/countries.txt index 271bbd5dd1..0ce76f8167 100644 --- a/sca-java-2.x/trunk/samples/learning-more/binding-websocket/autocomplete-webapp/src/main/resources/countries.txt +++ b/sca-java-2.x/trunk/samples/learning-more/binding-websocket/autocomplete-webapp/src/main/resources/countries.txt @@ -1,3 +1,19 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. Afghanistan Albania Algeria |