diff graal/com.oracle.truffle.api/src/com/oracle/truffle/api/utilities/ConditionProfile.java @ 16854:fc6f12ee71e5

Truffle: fixed header dates.
author Christian Humer <christian.humer@gmail.com>
date Mon, 18 Aug 2014 19:02:18 +0200
parents 3c114b3e08c3
children fa5e62620593
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/utilities/ConditionProfile.java	Mon Aug 18 19:00:41 2014 +0200
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/utilities/ConditionProfile.java	Mon Aug 18 19:02:18 2014 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 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
@@ -32,7 +32,7 @@
  *
  * <pre>
  * private final ConditionProfile zero = ...;
- *
+ * 
  * int value = ...;
  * if (zero.profile(value == 0)) {
  *   return 0;