From e0a91d25896b9d67f0cf3f1a5bb94c40e1ecfc94 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 12 Jun 2017 23:38:25 +0200 Subject: All references in javadoc to projectlombok.org URLs now use the canonical URL. --- src/core/lombok/val.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/lombok/val.java') diff --git a/src/core/lombok/val.java b/src/core/lombok/val.java index a398fd34..a69d514c 100644 --- a/src/core/lombok/val.java +++ b/src/core/lombok/val.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2013 The Project Lombok Authors. + * Copyright (C) 2010-2017 The Project Lombok Authors. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -28,7 +28,7 @@ package lombok; *

* Note that this is an annotation type because {@code val x = 10;} will be desugared to {@code @val final int x = 10;} *

- * Complete documentation is found at the project lombok features page for @val. + * Complete documentation is found at the project lombok features page for @val. */ public @interface val { } -- cgit