aboutsummaryrefslogtreecommitdiffstats
path: root/models/git/commit_status_test.go
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2025-06-03 18:00:39 +0200
committerGitHub <noreply@github.com>2025-06-03 16:00:39 +0000
commit375dab111198e6432b303a3c29b8e91bec95d361 (patch)
tree9f8b95674ecc3b74498d3119fcf39227cc04edf1 /models/git/commit_status_test.go
parent2a1585b32ea2c3cb961cd1aedf4117d880255a53 (diff)
downloadgitea-375dab111198e6432b303a3c29b8e91bec95d361.tar.gz
gitea-375dab111198e6432b303a3c29b8e91bec95d361.zip
Make pull request and issue history more compact (#34588)
Reduced spacing around history entries and inside the commits list, also fixed unequal horizontal spacing inside the commit badge.
Diffstat (limited to 'models/git/commit_status_test.go')
0 files changed, 0 insertions, 0 deletions
id='n60' href='#n60'>60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html> <head>
<title>AspectJ 1.9.5 Readme</title>
<style type="text/css">
<!--
  P   { margin-left:  20px; }
  PRE { margin-left:  20px; }
  LI  { margin-left:  20px; }
  H4  { margin-left:  20px; }
  H3  { margin-left:  10px; }
-->
</style>
</head>

<body>
<div align="right"><small>
&copy; Copyright 2019 Contributors.
All rights reserved.
</small></div>
<h1>AspectJ 1.9.5</h1>
<p>The full list of resolved issues in 1.9.5 is available 
<a href="https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&f0=OP&f1=OP&f3=CP&f4=CP&j1=OR&list_id=16866879&product=AspectJ&query_format=advanced&target_milestone=1.9.5">here</a></h2>.</p>

<p>AspectJ 1.9.5 supports Java13. Java13 introduces text blocks, but you must activate support for that via 
an <tt>--enable-preview</tt> flag when using the compiler and attempting to run the resultant classes:

Here is <tt>Code.java</tt>:
<pre><code>
=======8<=========
public class Code {
  public static void main(String[] argv) {
  }

  static aspect X {
    before(): execution(* Code.main(..)) {
	System.out.println(
"""
This
is
on
multiple
lines
"""
);
    }
  }

}
=========8<=========
</code></pre>

<p>Compile it with:
<pre><code>
$ ajc --enable-preview -13 Code.java
</code></pre>

<p>Now run it:
<pre><code>
$ java --enable-preview Code
This
is
on
multiple
lines
</code></pre>

<p>Available: 1.9.5 available 28-Nov-2019</p>

<br><br>


<!-- ============================== -->  
</body>
</html>