Revert "Frameworks/base: Fix a constructor"

The constructor was public API, doh. Gotta do this differently.

This reverts commit 33c5b2a62f.

Change-Id: Iadca87fe6a8866a8bd9d6f2a91578ec0d4c44691
This commit is contained in:
Andreas Gampe
2015-03-16 17:51:01 +00:00
parent 33c5b2a62f
commit 8c80efeaeb

View File

@@ -513,5 +513,5 @@ public class RecoverySystem {
return arg;
}
private RecoverySystem() { } // Do not instantiate
private void RecoverySystem() { } // Do not instantiate
}