Skip to content

Commit 92f571b

Browse files
committed
Minor cleanup.
1 parent 5113948 commit 92f571b

File tree

4 files changed

+4
-25
lines changed

4 files changed

+4
-25
lines changed

license.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ A template to build a Library for the Processing programming environment.
22

33
Part of the Processing project - http://processing.org
44

5-
Copyright 2011-2016 Elie Zananiri
5+
Copyright 2011-2018 Elie Zananiri
66
Copyright 2008-2011 Andreas Shlegel
77

88
Licensed under the Apache License, Version 2.0 (the "License");

resources/build.xml

-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,6 @@ ${line}
373373
<delete dir="${project.bin}"/>
374374
<delete dir="${project.tmp}"/>
375375
<echo>
376-
377376
${line}
378377
Name ${project.name}
379378
Version ${library.prettyVersion} (${library.version})

resources/code/doc.sh

-18
This file was deleted.

src/template/library/HelloLibrary.java

+3-5
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class HelloLibrary {
2929
* initialize and start the Library.
3030
*
3131
* @example Hello
32-
* @param theParent
32+
* @param theParent the parent PApplet
3333
*/
3434
public HelloLibrary(PApplet theParent) {
3535
myParent = theParent;
@@ -56,10 +56,8 @@ public static String version() {
5656

5757
/**
5858
*
59-
* @param theA
60-
* the width of test
61-
* @param theB
62-
* the height of test
59+
* @param theA the width of test
60+
* @param theB the height of test
6361
*/
6462
public void setVariable(int theA, int theB) {
6563
myVariable = theA + theB;

0 commit comments

Comments
 (0)