Added license header and remvoed comments
Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/45510b29 Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/45510b29 Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/45510b29 Branch: refs/heads/STREAMS-46 Commit: 45510b292b8f1dc5de5611c87abf70b856be4125 Parents: 1e23300 Author: rebanks <[email protected]> Authored: Mon Jul 14 10:22:47 2014 -0500 Committer: rebanks <[email protected]> Committed: Mon Jul 14 10:22:47 2014 -0500 ---------------------------------------------------------------------- .../streams/instagram/InstagramConfigurator.java | 12 +----------- .../provider/InstagramRecentMediaCollector.java | 14 ++++++++++++++ .../provider/InstagramRecentMediaProvider.java | 14 ++++++++++++++ .../provider/InstagramRecentMediaCollectorTest.java | 14 ++++++++++++++ .../provider/InstagramRecentMediaProviderTest.java | 14 ++++++++++++++ 5 files changed, 57 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/45510b29/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/InstagramConfigurator.java ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/InstagramConfigurator.java b/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/InstagramConfigurator.java index 4d01605..cab072d 100644 --- a/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/InstagramConfigurator.java +++ b/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/InstagramConfigurator.java @@ -28,7 +28,7 @@ import org.slf4j.LoggerFactory; import java.io.IOException; /** - * Created by sblackmon on 12/10/13. + * */ public class InstagramConfigurator { @@ -38,9 +38,6 @@ public class InstagramConfigurator { public static InstagramConfiguration detectInstagramConfiguration(Config config) { -// ValidatorFactory factory = Validation.buildDefaultValidatorFactory(); -// Validator validator = factory.getValidator(); - InstagramConfiguration instagramConfiguration = null; try { instagramConfiguration = mapper.readValue(config.root().render(ConfigRenderOptions.concise()), InstagramConfiguration.class); @@ -49,16 +46,11 @@ public class InstagramConfigurator { } Preconditions.checkNotNull(instagramConfiguration); -// Preconditions.checkState(validator.validate(instagramConfiguration).size() == 0); - return instagramConfiguration; } public static InstagramUserInformationConfiguration detectInstagramUserInformationConfiguration(Config config) { -// ValidatorFactory factory = Validation.buildDefaultValidatorFactory(); -// Validator validator = factory.getValidator(); - InstagramUserInformationConfiguration instagramConfiguration = null; try { instagramConfiguration = mapper.readValue(config.root().render(ConfigRenderOptions.concise()), InstagramUserInformationConfiguration.class); @@ -67,8 +59,6 @@ public class InstagramConfigurator { } Preconditions.checkNotNull(instagramConfiguration); -// Preconditions.checkState(validator.validate(instagramConfiguration).size() == 0); - return instagramConfiguration; } http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/45510b29/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/provider/InstagramRecentMediaCollector.java ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/provider/InstagramRecentMediaCollector.java b/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/provider/InstagramRecentMediaCollector.java index 928ff9e..e459a0a 100644 --- a/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/provider/InstagramRecentMediaCollector.java +++ b/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/provider/InstagramRecentMediaCollector.java @@ -1,3 +1,17 @@ +/* +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 * +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. */ package org.apache.streams.instagram.provider; import com.google.common.collect.Sets; http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/45510b29/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/provider/InstagramRecentMediaProvider.java ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/provider/InstagramRecentMediaProvider.java b/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/provider/InstagramRecentMediaProvider.java index e5fa464..3d67a48 100644 --- a/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/provider/InstagramRecentMediaProvider.java +++ b/streams-contrib/streams-provider-instagram/src/main/java/org/apache/streams/instagram/provider/InstagramRecentMediaProvider.java @@ -1,3 +1,17 @@ +/* +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 * +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. */ package org.apache.streams.instagram.provider; import com.google.common.collect.Queues; http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/45510b29/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/provider/InstagramRecentMediaCollectorTest.java ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/provider/InstagramRecentMediaCollectorTest.java b/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/provider/InstagramRecentMediaCollectorTest.java index 39f607c..0225b40 100644 --- a/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/provider/InstagramRecentMediaCollectorTest.java +++ b/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/provider/InstagramRecentMediaCollectorTest.java @@ -1,3 +1,17 @@ +/* +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 * +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. */ package org.apache.streams.instagram.provider; import com.google.common.collect.Lists; http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/45510b29/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/provider/InstagramRecentMediaProviderTest.java ---------------------------------------------------------------------- diff --git a/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/provider/InstagramRecentMediaProviderTest.java b/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/provider/InstagramRecentMediaProviderTest.java index 7d2a47b..59e90b4 100644 --- a/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/provider/InstagramRecentMediaProviderTest.java +++ b/streams-contrib/streams-provider-instagram/src/test/java/org/apache/streams/instagram/provider/InstagramRecentMediaProviderTest.java @@ -1,3 +1,17 @@ +/* +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 * +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. */ package org.apache.streams.instagram.provider; import org.apache.streams.core.StreamsResultSet;
