Revision: 1797
http://sourceforge.net/p/fb-contrib/code/1797
Author: dbrosius
Date: 2016-09-24 00:37:08 +0000 (Sat, 24 Sep 2016)
Log Message:
-----------
remove moved files
Removed Paths:
-------------
trunk/fb-contrib/samples/FCD_Sample.java
Deleted: trunk/fb-contrib/samples/FCD_Sample.java
===================================================================
--- trunk/fb-contrib/samples/FCD_Sample.java 2016-09-24 00:35:51 UTC (rev 1796)
+++ trunk/fb-contrib/samples/FCD_Sample.java 2016-09-24 00:37:08 UTC (rev 1797)
@@ -1,81 +0,0 @@
-
-public class FCD_Sample {
- Child c = new Child();;
-
- public void cdTest() {
- c.childTest();
- }
-}
-
-class Child {
- SubChild sc = new SubChild();
-
- public void childTest() {
- sc.subChildTest();
- }
-}
-
-class SubChild {
- FCD_Sample cds = new FCD_Sample();
-
- public void subChildTest() {
- cds.toString();
- }
-}
-
-class Mammooth {
- private int x;
-
- static class Builder {
- private int x;
-
- public void setX(int x) {
- this.x = x;
- }
-
- public Mammooth build() {
- Mammooth m = new Mammooth();
- m.x = x;
- return m;
- }
- }
-}
-
-class SuspectBuilderUse {
- private int data;
-
- public static class Builder {
-
- int data;
-
- public void setData(int data) {
- this.data = data;
- }
- }
-
- public SuspectBuilderUse(Builder b) {
- this.data = b.data;
- }
-
- public int getData() {
- return data;
- }
-}
-
-class GitHubIssue101 {
- protected void onCreate(final String savedInstanceState) {
- final Intent intent = new Intent(ChildWithUsedClassObj.class);
- startActivity(intent);
- }
-
- private void startActivity(Intent i) {
- }
-}
-
-class ChildWithUsedClassObj extends GitHubIssue101 {
-}
-
-class Intent {
- Intent(Class c) {
- }
-}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|