From 00983b30087f49198fa2302a5cd36f97a089869d Mon Sep 17 00:00:00 2001 From: Joe Darcy Date: Fri, 19 Aug 2011 17:42:24 -0700 Subject: [PATCH] 4748706: typos in java.util.Observable documentation Reviewed-by: iris --- jdk/src/share/classes/java/util/Observable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jdk/src/share/classes/java/util/Observable.java b/jdk/src/share/classes/java/util/Observable.java index a208303ad94..7104071ff62 100644 --- a/jdk/src/share/classes/java/util/Observable.java +++ b/jdk/src/share/classes/java/util/Observable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1994, 2004, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1994, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -44,7 +44,7 @@ package java.util; * notifications on separate threads, or may guarantee that their * subclass follows this order, as they choose. *

- * Note that this notification mechanism is has nothing to do with threads + * Note that this notification mechanism has nothing to do with threads * and is completely separate from the wait and notify * mechanism of class Object. *