Browse Source

Some more whitespace fixes by Larry Shatzer

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277073 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 20 years ago
parent
commit
8fe43107a6
3 changed files with 4 additions and 4 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/condition/IsSigned.java
  2. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/starteam/StarTeamList.java
  3. +2
    -2
      src/main/org/apache/tools/ant/util/WeakishReference.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/condition/IsSigned.java View File

@@ -85,7 +85,7 @@ public class IsSigned extends DataType implements Condition {
+ SIG_END) != null; + SIG_END) != null;
boolean longSig = false; boolean longSig = false;
if (name.length() > 8) { if (name.length() > 8) {
longSig =
longSig =
jarFile.getEntry(SIG_START jarFile.getEntry(SIG_START
+ name.substring(0, 8).toUpperCase() + name.substring(0, 8).toUpperCase()
+ SIG_END) != null; + SIG_END) != null;


+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/starteam/StarTeamList.java View File

@@ -98,7 +98,7 @@ public class StarTeamList extends TreeBasedTask {
View view = getViewConfiguredByDate(raw); View view = getViewConfiguredByDate(raw);
if (view != null) { if (view != null) {
return view; return view;
// otherwise, use this view configured as the tip.
// otherwise, use this view configured as the tip.
} else { } else {
return new View(raw, ViewConfiguration.createTip()); return new View(raw, ViewConfiguration.createTip());
} }


+ 2
- 2
src/main/org/apache/tools/ant/util/WeakishReference.java View File

@@ -43,8 +43,8 @@ public abstract class WeakishReference {
* Returns this reference object's referent. If this reference object has * Returns this reference object's referent. If this reference object has
* been cleared, then this method returns <code>null</code>. * been cleared, then this method returns <code>null</code>.
* *
* @return The object to which this reference refers, or
* <code>null</code> if this reference object has been cleared
* @return The object to which this reference refers, or
* <code>null</code> if this reference object has been cleared
*/ */
public abstract Object get(); public abstract Object get();




Loading…
Cancel
Save