diff -r b2064a216117 -r 30c36e23f154 src/share/classes/com/sun/tools/javac/util/Context.java --- a/src/share/classes/com/sun/tools/javac/util/Context.java Sat Sep 08 22:54:21 2012 -0700 +++ b/src/share/classes/com/sun/tools/javac/util/Context.java Thu Sep 13 14:29:36 2012 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2001, 2012, 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 @@ -115,7 +115,10 @@ * The underlying map storing the data. * We maintain the invariant that this table contains only * mappings of the form - * Key -> T or Key -> Factory */ + * {@literal Key -> T } + * or + * {@literal Key -> Factory } + */ private Map,Object> ht = new HashMap,Object>(); /** Set the factory for the key in this context. */