Github user isper3at commented on a diff in the pull request:

    https://github.com/apache/incubator-rya/pull/151#discussion_r110772681
  
    --- Diff: 
extras/rya.prospector/src/main/java/org/apache/rya/prospector/utils/CustomEntry.java
 ---
    @@ -6,47 +6,53 @@
      * 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.
      */
    +package org.apache.rya.prospector.utils;
     
    -package org.apache.rya.prospector.utils
    +import java.util.Map;
     
     /**
    - * Date: 12/3/12
    - * Time: 12:33 PM
    + * A convenience class that implements {@link Map.Entry}.
    + *
    + * @param <K> - The type of the Key.
    + * @param <V> - The type of the Value.
      */
    -class CustomEntry<K, V> implements Map.Entry<K, V> {
    +public class CustomEntry<K, V> implements Map.Entry<K, V> {
     
    -    K key;
    -    V value;
    +    private K key;
    +    private V value;
     
    -    CustomEntry(K key, V value) {
    -        this.key = key
    -        this.value = value
    +    public CustomEntry(K key, V value) {
    +        this.key = key;
    +        this.value = value;
         }
     
    -    K getKey() {
    -        return key
    +    @Override
    +    public K getKey() {
    +        return key;
         }
     
    -    void setKey(K key) {
    -        this.key = key
    +    public void setKey(K key) {
    +        this.key = key;
    --- End diff --
    
    how was this even working without semicolons before.....


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to