33822 Change Faculty to Factorial in the samples as this was the intention.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/bcel/tags/BCEL_5_0@219363 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/docs/Faculty.java b/docs/Faculty.java
deleted file mode 100644
index c8e7d95..0000000
--- a/docs/Faculty.java
+++ /dev/null
@@ -1,28 +0,0 @@
-import java.io.*;
-
-public class Faculty {
-  private static BufferedReader in = new BufferedReader(new
-                                InputStreamReader(System.in));
-
-  public static final int fac(int n) {
-    return(n == 0)? 1 : n * fac(n - 1);
-  }
-
-  public static final int readInt() {
-    int n = 4711;
-
-    try {
-      System.out.print("Please enter a number> ");
-      n = Integer.parseInt(in.readLine());
-    }
-    catch(IOException e1) { System.err.println(e1); }
-    catch(NumberFormatException e2) { System.err.println(e2); }
-
-    return n;
-  }
-
-  public static void main(String[] args) {
-    int n = readInt();
-    System.out.println("Faculty of " + n + " is " + fac(n));
-  }
-}