From 801a338c37f6eff6e9b9c4913bb4330e7cf98be4 Mon Sep 17 00:00:00 2001 From: Brian Vosburgh Date: Fri, 16 Oct 2015 17:03:49 -0400 Subject: tweak some comments --- .../src/org/eclipse/jpt/common/utility/internal/predicate/False.java | 4 ++-- .../eclipse/jpt/common/utility/internal/reference/ReferenceTools.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/predicate/False.java b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/predicate/False.java index 6de555c5fc..1a5d1dd8e3 100644 --- a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/predicate/False.java +++ b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/predicate/False.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2005, 2013 Oracle. All rights reserved. + * Copyright (c) 2005, 2015 Oracle. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0, which accompanies this distribution * and is available at http://www.eclipse.org/legal/epl-v10.html. @@ -36,7 +36,7 @@ public final class False } /** - * Return true. + * Return false. */ public boolean evaluate(V variable) { return false; diff --git a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/reference/ReferenceTools.java b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/reference/ReferenceTools.java index 86d9ff0254..219d95042c 100644 --- a/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/reference/ReferenceTools.java +++ b/common/plugins/org.eclipse.jpt.common.utility/src/org/eclipse/jpt/common/utility/internal/reference/ReferenceTools.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2010, 2013 Oracle. All rights reserved. + * Copyright (c) 2010, 2015 Oracle. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0, which accompanies this distribution * and is available at http://www.eclipse.org/legal/epl-v10.html. @@ -16,7 +16,7 @@ import org.eclipse.jpt.common.utility.reference.BooleanReference; */ public final class ReferenceTools { /** - * Return a boolean reference with the specified value. + * Return a boolean reference with the specified value. */ public static BooleanReference booleanReference(boolean value) { return value ? TrueBooleanReference.instance() : FalseBooleanReference.instance(); -- cgit v1.2.3